@section('title', 'Pending Order List')
SL | Code | Shop Name | Customer Name | Mobile | Address | Order Date | Total | Status | @if (!Auth::user()->hasAnyRole('manager'))Action | @endif|
---|---|---|---|---|---|---|---|---|---|---|
@if ($check_all) @endif {{ ++$i }} | {{ $processingOrder->code }} | @if ($processingOrder->Contact) {{ $processingOrder->Contact->business_name }} @endif | @if ($processingOrder->Contact) {{ $processingOrder->Contact->first_name }} @endif | @if ($processingOrder->Contact) {{ $processingOrder->Contact->mobile }} @endif | @if ($processingOrder->Contact) {{ $processingOrder->Contact->shipping_address }} @endif |
{{ date('d F Y', strtotime($processingOrder->created_at)) }} {{ date('h:i A', strtotime($processingOrder->created_at)) }} |
{{ $processingOrder->payable_amount }} | {{ $processingOrder->status }} | {{----}} @if (!Auth::user()->hasAnyRole('manager')) |
@can('edit processing_order')
@if ($processingOrder->status != 'delivered')
@endif
@endcan
|
@endif