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