Welcome to {{ config('settings.site_name') }}'s Admin Panel.

Total Shipments
{{ $totalShipments }}
This Month
{{ $currentMonthShipments }}
This Week
{{ $currentWeekShipments }}
Total Costs
{{ $totalCost }} USD
This Month
{{ $currentMonthCost }} USD
This Week
{{ $currentWeekCost }} USD
Recent Shipments See all
Tracking
Date
Sender
Receiver
Status
Origin
Destination
Total Cost
@forelse($recentOrders as $order)
{{ $order->created_at }}
{{ $order->sender_name }}
{{ $order->receiver_name }}
@if($order->latestShipment->status === APPROVED) Approved @elseif($order->latestShipment->status === AVAILABLE) Available @elseif($order->latestShipment->status === CANCELLED) Cancelled @elseif($order->latestShipment->status === DISTRIBUTION) Distribution @elseif($order->latestShipment->status === INTRANSIT) In Transit @elseif($order->latestShipment->status === INWAREHOUSE) In Warehouse @elseif($order->latestShipment->status === INVOICED) Invoiced @elseif($order->latestShipment->status === ONROUTE) On Route @elseif($order->latestShipment->status === ONHOLD) On Hold @elseif($order->latestShipment->status === PENDINGCOLLECTION) Pending Collection @elseif($order->latestShipment->status === PENDINGPAYMENT) Pending Payment @elseif($order->latestShipment->status === RECEIVEDOFFICE) Received Office @endif
{{ $order->origin }}
{{ $order->destination }}
${{ $order->total_freight }} USD
@empty

No shipment at the moment

@endforelse