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