@include('admin.header')

Booking Invoice Details

Back to Invoices Edit
Invoice Details
Invoice Number {{ $bookingInvoice->invoice_number }}
Shipment {{ $shipment->shipment_number }}
Order Confirmation {{ $shipment->orderConfirmation->order_number }}
Invoice Date {{ $bookingInvoice->invoice_date->format('M d, Y') }}
Freight Charges ${{ number_format($bookingInvoice->freight_charges, 2) }}
Insurance Charges ${{ number_format($bookingInvoice->insurance_charges, 2) }}
Handling Charges ${{ number_format($bookingInvoice->handling_charges, 2) }}
Other Charges ${{ number_format($bookingInvoice->other_charges, 2) }}
Total Charges ${{ number_format($bookingInvoice->total_charges, 2) }}
@if($bookingInvoice->charges_description)
{{ $bookingInvoice->charges_description }}
@endif
Shipment Information
Vessel/Flight:
{{ $shipment->vessel_flight_no ?? 'N/A' }}
Port of Loading:
{{ $shipment->port_of_loading ?? 'N/A' }}
Port of Discharge:
{{ $shipment->port_of_discharge ?? 'N/A' }}
ETD:
{{ $shipment->etd ? $shipment->etd->format('M d, Y') : 'N/A' }}
ETA:
{{ $shipment->eta ? $shipment->eta->format('M d, Y') : 'N/A' }}
Invoice Info
Created By:
{{ $bookingInvoice->creator->name }}
Created At:
{{ $bookingInvoice->created_at->format('M d, Y H:i') }}
Last Updated:
{{ $bookingInvoice->updated_at->format('M d, Y H:i') }}
@include('admin.footer')