Period: {{ $period->year ?? '-' }} | Printed at: {{ now()->format('d M Y H:i') }}
| No | Termin | Shipment | Vessel | SPK | Location | Fuel | Volume | P | A | B | Status |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ 'Termin ' . $shipment->termin->termin_number ?? '-' }} | {{ 'Shipment ' . $shipment->shipment_number ?? '-' }} | {{ $shipment->vessel->vessel_name ?? '-' }} | {{ $shipment->spk->spk_number ?? '-' }} | {{ $shipment->location }} | {{ $shipment->fuel->fuel_type ?? '-' }} | {{ number_format($shipment->volume, 0, ',', '.') }} | {{ number_format($shipment->p, 0, ',', '.') }} | {{ number_format($shipment->a, 0, ',', '.') }} | {{ number_format($shipment->b, 0, ',', '.') }} | {{ ucfirst(str_replace('_', ' ', $shipment->status_shipment)) }} |