@if ($warehouses->isEmpty())
No warehouses found. Create one to get started.
@else
| S.No |
Name |
Company |
Status |
Actions |
@foreach ($warehouses as $key => $warehouse)
| {{ ++$key }} |
{{ $warehouse->name }} |
{{ $warehouse->company?->name ?? '—' }} |
|
|
@endforeach
@endif