@php
$statuses = [
"PROCESSING" => "Processing",
"OUT FOR DELIVERY" => "Out for Delivery",
"DELIVERED" => "Delivered"
];
@endphp
@foreach($statuses as $statusKey => $statusName)
@php
$tracking = $shipment_query->tracking()->orderBy('id','desc')->where('status', $statusKey)->first();
$isActive = $tracking ? "active" : "";
@endphp
{{ $statusName }}
@if($tracking)
{{ $statusKey === 'OUT FOR DELIVERY' ? 'Order is Out for Delivery' : $tracking->created_at->format('m/d/y H:i:s A') }}
@else
{{ $statusKey === 'OUT FOR DELIVERY' ? 'Processing' : '' }}
@endif
@endforeach