{{-- card inventory info start --}}
|
Purchase date
(MM/DD/YYYY):
|
{{ $inventories->buy_date }}
|
Cost:
|
RM
{{ number_format($inventories->price, 2, '.', ',') }}
|
|
Brand:
|
{{ $inventories->brand }}
|
Total Quantity:
|
{{ $inventories->totalQuantity }}
|
|
Supplier Name :
|
{{ $inventories->supplierName }}
|
Registered Item:
|
{{ $serialCount }}
|
|
Sequence No. :
|
{{ $inventories->seqNo }}
|
|
|
{{-- card inventory info end --}}
{{-- card serial no. start --}}
| No. |
Serial Number |
Tag Number |
Holder |
Location |
Status |
Action |
@php $counter = 1 @endphp
@if (!$serials->isEmpty())
@foreach ($serials as $serial)
| {{ $counter++ }} |
{{ $serial->serialNo }} |
{{ $serial->tagNumber }} |
{{ $serial->holder }} |
{{ $serial->location?->name ?? 'N/A' }} |
{{ $serial->status ?? 'Unknown' }} |
|
@endforeach
@else
| No Data Found |
@endif
{{-- card serial no. end --}}