@extends('dashboard.admin.layouts.master') @section('content')
@include('dashboard.admin.partials.banner_area')

Tracking Code: {{ $shipment->tracking_code }}


From:
{{ $shipment->sender_name }}
{{ $shipment->sender_address }}
{{ $shipment->sender_phone }}
{{ $shipment->sender_email }}
Shipped To:
{{ $shipment->client_name }}
{{ $shipment->client_address }}
{{ $shipment->client_phone }}
{{ $shipment->client_email }}
Payment Mode:
{{ $shipment->payment_mode }}
Shipment Date:
{{ date('d F Y', strtotime($shipment->date_of_shipment)) }}

Type Of Shipment Shipped From Pickup Location Expected Delivery Date Departure Time Pickup Time
{{ $shipment->type_of_shipment }} {{ $shipment->shipped_from }} {{ $shipment->pickup_location }} {{ date('d F Y', strtotime($shipment->expected_delivery_date)) }} {{ date('H:i A', strtotime($shipment->departure_time)) }} {{ date('H:i A', strtotime($shipment->pickup_time)) }}
Quantity Length Width Height Comment Description
{{ $shipment->quantity }} {{ $shipment->length }} {{ $shipment->width }} {{ $shipment->height }} {{ $shipment->comment }} {{ $shipment->description }}
Product Mode Carrier Reference Number Carrier Status Current Location
{{ $shipment->product }} {{ $shipment->mode }} {{ $shipment->carrier_reference_no }} {{ $shipment->carrier }} {{ $shipment->status }} {{ $shipment->current_location }}
Shipment amount
{{ currency($shipment->currency) . formatAmount($shipment->shipment_amount) }}

@include('partials.email_message')

Shipment Location

@foreach ($shipmentLocations as $key => $shipmentLocation) @endforeach
# Status Location Google Map Location Description Date Time Action
{{ $key + 1 }} {{ $shipmentLocation->status }} @if ($shipment->current_location == $shipmentLocation->location && $shipment->status == $shipmentLocation->status) Current Location: {{ $shipmentLocation->location }} @else Previous Location: {{ $shipmentLocation->location }} @endif {{ $shipmentLocation->google_map_location }} {{ $shipmentLocation->description }} {{ date('d F Y', strtotime($shipmentLocation->date)) }} {{ date('g:i A', strtotime($shipmentLocation->time)) }}
@endsection