| No |
Material Code |
Serial Number |
Motor Scanned Status |
Pump Scanned Status |
Scanned Status Set |
Scanned Status |
Time Stamp |
Operator ID |
@forelse ($records as $index => $record)
| {{ $records->firstItem() + $index }} |
{{ $record->stickerMasterRelation?->item?->code ?? 'N/A' }} |
{{ $record->serial_number ?? 'N/A' }} |
{{ $record->motor_scanned_status ? '1' : '' }} |
{{ $record->pump_scanned_status ? '1' : '' }} |
{{ $record->scanned_status_set ? '1' : '' }} |
{{ $record->scanned_status ?? '' }} |
{{ optional($record->created_at)->format('d-m-Y H:i:s') }} |
{{ $record->updated_by ?? '' }} |
@empty
|
No scanned data found for location {{ $location }}
|
@endforelse
{{--
{{ $records->onEachSide(3)->links() }}
--}}
@endif
@if($isSfg)
| No |
Location |
Bin |
Item Code |
Serial Number |
Batch |
Document Number |
Total Quantity |
Scanned Quantity |
Operator ID |
@forelse($scannedSfgData as $index => $row)
| {{ $index+1 }} |
{{ $row['location'] }} |
{{ $row['bin'] }} |
{{ $row['item_code'] }} |
{{ $row['serial_number'] }} |
{{ $row['batch'] }} |
{{ $row['doc_no'] }} |
{{ $row['quantity'] }} |
{{ $row['scanned_quantity'] }} |
{{ $row['updated_by'] }} |
@empty
|
No scanned SFG data
|
@endforelse
@endif
@if($isnonQuanSfg)
| No |
Location |
Bin |
Item Code |
Serial Number |
Batch |
Document Number |
Total Quantity |
Scanned Quantity |
Operator ID |
@forelse($scannedSerials as $index => $row)
| {{ $index+1 }} |
{{ $row['location'] }} |
{{ $row['bin'] }} |
{{ $row['item_code'] }} |
{{ $row['serial_number'] }} |
{{ $row['batch'] }} |
{{ $row['doc_no'] }} |
{{ $row['quantity'] }} |
{{ $row['scanned_quantity'] }} |
{{ $row['updated_by'] }} |
@empty
|
No scanned SFG data
|
@endforelse
@endif
{{-- Modal for Capacitor Input --}}
@if($showCapacitorInput)
{{-- Add this script to focus on the input --}}
{{-- --}}
@endif
{{-- Modal for material invoice--}}
@if($materialInvoice)
{{-- --}}
{{--
--}}
| No |
Material Code |
Material Type |
Material Quantity |
Serial Number |
Batch Number |
TimeStamp |
Operator ID |
@forelse ($invoiceData as $index => $row)
| {{ $index + 1 }} |
{{ $row['code'] ?? 'N/A' }} |
{{ $row['material_type'] ?? 'N/A' }} |
@if(($row['material_type'] ?? '') === 'Individual' || ($row['material_type'] ?? '') === 'Bundle')
{{ number_format((float)($row['quantity'] ?? 0), 0) }}
@else
{{ $row['quantity'] ?? 'N/A' }}
@endif
|
{{ $row['serial_number'] ?? 'N/A' }} |
{{ $row['batch_number'] ?? 'N/A' }} |
{{ $row['created_at'] ?? 'N/A' }} |
{{ $row['operator_id'] ?? 'N/A' }} |
@empty
|
No data found for invoice number {{ $invoiceNumber }}.
|
@endforelse
@endif
{{-- --}}