@php $tracking = $shipment->tracking; @endphp
Tracking Code
{{ $shipment->tracking_code }}
Date Sent
{{ $tracking->date_sent->format('d/m/Y') }}
Expected Arrival Date
{{ $tracking->date_expected->format('d/m/Y') }}
Sender Details:
{{ $shipment->sender_name }}

{{ $shipment->sender_address }}

Phone: {{ $shipment->sender_phone }}
Email: {{ $shipment->sender_email }}
Country: {{ $shipment->sender_country }}

Receiver Details:
{{ $shipment->receiver_name }}

{{ $shipment->receiver_address }}

Phone: {{ $shipment->receiver_phone }}
Email: {{ $shipment->receiver_email }}
Country: {{ $shipment->receiver_country }}

Shipment Details
@if($shipment->amount) @endif
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
@if ($tracking->status_code == 0) @endif
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 }}
@if($shipment->amount)
Grand Total: {{ $settings->currency . number_format($shipment->amount, 2) }}
@endif
Edit Tracking
@include('partials.photo-modal') Are you sure you want to delete shipment - ? @if (session('success')) @endif