Shipment Invoice
Shipment Number(Tracking ID): {{$shipment->tracking_code }}
Shipper Information:
Name : {{ $shipment->sender_name }}
Email : {{ $shipment->sender_email }}
Address {{ $shipment->sender_address }} :
Name : {{ $shipment->sender_name }}
Email : {{ $shipment->sender_email }}
Address {{ $shipment->sender_address }} :
Shipped To:
Name : {{ $shipment->receiver_name }}
Email : {{ $shipment->receiver_email }}
Address {{ $shipment->receiver_address }} :
Name : {{ $shipment->receiver_name }}
Email : {{ $shipment->receiver_email }}
Address {{ $shipment->receiver_address }} :
Departure Date
{{ $tracking->date_sent->format('d/m/Y') }}
{{ $tracking->date_sent->format('d/m/Y') }}
Delivery Date
{{ $tracking->date_expected->format('d/m/Y') }}
{{ $tracking->date_expected->format('d/m/Y') }}
Parcel Statue Progress ({{ $tracking->progress }}%)
{{-- Parcel Statue Indicator
--}}
{{-- Parcel Statue Indicator
Shipment Summary
Here are some other important shipment information to take note of.
Shipment Details
| Item | Details |
|---|---|
| Amount | {{ $settings->currency . number_format($shipment->amount, 2) }} |
| Weight | {{ $shipment->weight . $settings->weight_unit }} |
| Description | {{ $shipment->description }} |
| Photo |
@if ($shipment->photo != null)
Click to view
@else
No photo was uploaded for this shipment.
@endif
|
| Status | $shipment->is_active, 'bg-danger' => !$shipment->is_active, ])>{{ shipment_status($shipment->is_active) }} |
| Creation Date | {{ $shipment->created_at->format('d/m/Y') }} |
Tracking Details
| Item | Details |
|---|---|
| Tracking Status |
{!! status($tracking->status_code) !!}
|
| Hold Reason | {{ $tracking->hold_reason }} |
| Date Sent | {{ $tracking->date_sent->format('m/d/Y') }} |
| Date Expected | {{ $tracking->date_expected->format('m/d/Y') }} |
| Progress | {{ $tracking->progress }}% |
| Current Location | {{ $tracking->current_location }} |