| {{ $item->product_code }} |
@if ($item->product_image)
@else
@endif
|
{{ $item->product_name }} |
{{ number_format($item->product_current_unit_price, 2) }} |
{{ $item->name ?? '-' }} |
{{ $item->product_min_stock_level ?? '-' }} |
{{ $item->product_max_stock_level ?? '-' }} |
@if ($item->product_current_stock <= $item->product_min_stock_level)
{{ $item->product_current_stock ?? '0' }}
@else
{{ $item->product_current_stock ?? '0' }}
@endif
|
{{ $item->product_type_name }} |
@if ($item->product_status === 'active')
Active
@else
Inactive
@endif
|
|
@endforeach