@php
$currentFound = false;
$statusTimes = collect($statusInfo['history'])->pluck('timestamp', 'status');
@endphp
Order Placed
@if($time = $statusTimes->get('pending'))
{{ $time }}
@endif
Processing
@if($time = $statusTimes->get('processing'))
{{ $time }}
@endif
Shipped
@if($time = $statusTimes->get('shipped'))
{{ $time }}
@endif
{{ $statusInfo['statuses']['cancelled'] ? 'Cancelled' : 'Delivered' }}
@if($time = $statusTimes->get($statusInfo['statuses']['cancelled'] ? 'cancelled' : 'delivered'))
{{ $time }}
@endif