| Equipment Name |
Location |
Storage No. |
Position |
Label |
Description |
Patient Name |
Patient Code |
Age at the Time of Collection |
Sample Disposal Schedule |
Storage Status |
@foreach ($storage_location as $data)
| {{ $data->equipment }} |
{{ $data->location }} |
{{ $data->storage_number }} |
{{ $data->position }} |
{{ $data->label }} |
{{ $data->description }} |
@if ($data->type == 'sample')
{{ $data->full_name }} |
{{ $data->patient_code }} |
{{ $data->age_collection }} |
@else
|
|
|
@endif
{{ $data->schedule_disposal ? \Carbon\Carbon::parse($data->schedule_disposal)->format('F d, Y') : '' }} |
{{ $data->status }} |
@endforeach