|
Tracking Code: {{ $shipment->tracking_code }}
Date Sent: {{ $tracking->date_sent->format('F j, Y') }}
Date Expected: {{ $tracking->date_expected->format('F j, Y') }}
Invoice created at: {{ now()->format('F j, Y') }}
|
|
| Sender Details |
|
| Name |
{{ $shipment->sender_name }} |
| Email |
{{ $shipment->sender_email }} |
| Address |
{{ $shipment->sender_address }} |
| Phone |
{{ $shipment->sender_phone }} |
| Country |
{{ $shipment->sender_country }} |
|
|
|
|
| Receiver Details |
|
| Name |
{{ $shipment->receiver_name }} |
| Email |
{{ $shipment->receiver_email }} |
| Address |
{{ $shipment->receiver_address }} |
| Phone |
{{ $shipment->receiver_phone }} |
| Country |
{{ $shipment->receiver_country }} |
|
|
|
|
| Shipment Information |
|
| Name |
{{ $shipment->receiver_name }} |
| Description |
{{ $shipment->description }} |
| Weight |
{{ $shipment->weight . $settings->weight_unit }} |
@if ($shipment->photo)
| Photo |
Click to view
|
@endif
|
|
|
|
| Tracking Information |
|
| Status |
{{ status($tracking->status_code) }} |
@if ($tracking->status_code == 0)
| Hold Reason |
{{ $tracking->hold_reason }} |
@endif
| Date Sent |
{{ $tracking->date_sent->format('F j, Y') }} |
| Expected Date of Arrival |
{{ $tracking->date_expected->format('F j, Y') }} |
| Progress |
{{ $tracking->progress }}% |
| Current Location |
{{ $tracking->current_location }} |
|
Total: {{ $settings->currency . number_format($shipment->amount, 2) }} |