@include('admin.header')
| 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) }} |