All Products ({{ $products->count() }})

@forelse ($products as $product)
Application 21
{{ $product->discount ? 'Special Discount' : '' }}

{{ $product->name }}

Category : {{ $product->category ? $product->category->name : '--' }}

4.7


${{ $product->price ? number_format($product->price, 2) : '0.00' }}
@switch($product->is_active) @case(1) Active @break @case(0) Inactive @break @default Deleted @endswitch
{{--
--}}
@empty

No Data Found Yet

@endforelse