@if ($products->isEmpty())
Try adjusting your search or filters
| # | Product | SKU | Price | Current Stock | Pending Stock | Stock Level | Status | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $products->firstItem() + $key }} |
@if ($firstImage)
{{ $product->name }}ID: {{ $product->id }} |
{{ $product->sku ?? '-' }} | @if ($product->sale_price && $product->sale_price < $product->price) {{ format_price($product->price) }} {{ format_price($product->sale_price) }} @else {{ format_price($product->price) }} @endif | @if ($product->with_storehouse_management) {{ $product->current_stock }} @else Not Managed @endif | @if ($product->with_storehouse_management) {{ $product->pending_qty ?? 0 }} @else Not Managed @endif | @if ($product->stock_level == 'Out of Stock') Out of Stock @elseif ($product->stock_level == 'Coming Soon') Coming Soon @else In Stock @endif | @if ($product->status == 'published') Published @else {{ ucfirst($product->status) }} @endif |
|