{{ $shipment->sender_address }}
Phone:
{{ $shipment->sender_phone }}
Email:
{{ $shipment->sender_email }}
Country:
{{ $shipment->sender_country }}
{{ $shipment->receiver_address }}
Phone:
{{ $shipment->receiver_phone }}
Email:
{{ $shipment->receiver_email }}
Country:
{{ $shipment->receiver_country }}
| 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') }} |
| 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 }} |