@if ($products->isEmpty())
Try adjusting your search or filters
| # | Product | Brand | Size | Load Rating | Pattern | Price | W. Price | In Stock | Coming Stock | Stock Level | Status | Actions |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $products->firstItem() + $key }} |
@if ($firstImage)
{{ $product->name }}ID: {{ $product->id }} |
{{ $product->brand_name ?? '-' }} | {{ $product->size ?? '-' }} | {{ $product->load_rating ?? '-' }} | {{ $product->pattern ?? '-' }} |
@if ($product->sale_price && $product->sale_price < $product->price)
{{ format_price($product->price) }} {{ format_price($product->sale_price) }} @else {{ format_price($product->price) }} @endif |
{{ $product->wholesale_price ? format_price($product->wholesale_price) : '-' }} | @if ($product->with_storehouse_management) {{ intval($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 | {!! (new \Botble\Ecommerce\Enums\ProductStatusEnum()) ->make($product->status) ->toHtml() !!} |
|