Order Details
SL.NO. | Returning Wrenches | Replacement Wrenches |
---|---|---|
{{ $i + 1 }} | {!! $store_wrenches !== 'N/A' ? $store_wrenches : '' !!} | {!! $replacement_wrenches !== 'N/A' ? $replacement_wrenches : '' !!} |
End-to-End Order Management Support Process
-
{{-- {{dd($statuses)}} --}}
@foreach($statuses as $status)
@php
$orderid = $order->id;
$helper = new \App\Helpers\Helpers();
$history = $helper->check_status_history($orderid,$status);
$history_count = $helper->status_history_count($orderid,$status);
if($history_count !=0){
$status_date = $history->created_at->format('m/d/Y');
} else {
$status_date = '-';
}
@endphp
-
{{$status_date}} {{$status}}
@endforeach