Shipping Details
From:
{{ @$shipment->sender_name }}
Address: {{ @$shipment->sender_address }}
Email: {{ @$shipment->sender_email }}
Phone: {{ @$shipment->sender_phone }}
To:
{{ @$shipment->client_name }}
Address: {{ @$shipment->client_address }}
Email: {{ @$shipment->client_email }}
Phone: {{ @$shipment->client_phone }}
Description:
{{ @$shipment->description }}
Status:
Shipped from:
{{ @$shipment->shipped_from }}
Shipped to:
{{ @$shipment->shipped_to }}
Expected Date of Delivery:
{{ formatDate(@$shipment->arrival_date) }}
Pickup Location:
{{ @$shipment->current_location }}
Date of Shipment:
{{ formatDate(@$shipment->departure_date) }}
Shipped by:
{{ @$shipment->carrier }}
Location History
    @if ($shipmentLocations) @foreach ($shipmentLocations as $shipmentLocation)
  • {{ $shipment->status->value == $shipmentLocation->status->value && $shipment->current_location == $shipmentLocation->location ? "Current location: $shipmentLocation->location" : "Previous location: $shipmentLocation->location" }}

    {{ formatDate($shipmentLocation->date) }} {{ formatTime($shipmentLocation->time) }} {{ $shipmentLocation->status->value }}
  • @endforeach @else @endif