@if($product->image)
@else
No Image
@endif
|
{{ $product->sku }} |
{{ $product->name }} |
{{ $product->category->name }} |
${{ number_format($product->price, 2) }} |
@if($product->isLowStock())
{{ $product->stock_quantity }} (Low)
@elseif($product->stock_quantity == 0)
Out of Stock
@else
{{ $product->stock_quantity }}
@endif
|
@if($product->is_active)
Active
@else
Inactive
@endif
|
|
@empty