@extends('layouts.admin')
@section('title', 'Products')
@section('page-title', 'Products')
@push('styles')
@endpush
@section('content')
All Products
Add Product
@foreach($products as $product)
ID
Name
Category
Section
Price
Sale Price
SKU
Status
Actions
@endforeach
{{ $product->id }}
{{ $product->name }}
{{ $product->category->name }}
{{ $product->section?->title ?? '-' }}
${{ number_format($product->price, 2) }}
@if($product->sale_price)
${{ number_format($product->sale_price, 2) }}
{{ $product->getDiscountPercentage() }}% OFF
@else
@endif
{{ $product->sku }}