Searching: @if ($rq_from_date) From: {{ Carbon\carbon::parse($rq_from_date)->format('m-d-y') }}, @endif @if ($rq_to_date) To: {{ Carbon\carbon::parse($rq_to_date)->format('m-d-y') }}, @endif @if ($rq_order_from) Order From: {{ $rq_order_from }}, @else Order From: All, @endif @if ($rq_serving_method) Serving Method: {{ $rq_serving_method }}, @else Serving Method: All, @endif @if ($rq_order_status) Order Status: {{ $rq_order_status }}, @else Order Status: All, @endif @if ($rq_payment_status) Payment Status: {{ $rq_payment_status }}, @else Payment Status: All, @endif @if ($rq_completed) Completed: {{ $rq_completed }} @else Completed: All @endif
| Order Number | Name | Phone | Discount | Tax | Shipping Charge | Total | Serving Method | Payment | Status | Completed | Gateway | Time |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $order->order_number }} | {{ convertUtf8($order->billing_fname) }} | {{ $order->billing_country_code }}{{ $order->billing_number }} | {{ $order->currency_symbol_position == 'left' ? $order->currency_symbol : '' }} {{ $order->coupon }} {{ $order->currency_symbol_position == 'right' ? $order->currency_symbol : '' }} | {{ $order->currency_symbol_position == 'left' ? $order->currency_symbol : '' }}{{ $order->tax }}{{ $order->currency_symbol_position == 'right' ? $order->currency_symbol : '' }} | @if (!empty($order->shipping_charge)) {{ $order->currency_symbol_position == 'left' ? $order->currency_symbol : '' }}{{ $order->shipping_charge }}{{ $order->currency_symbol_position == 'right' ? $order->currency_symbol : '' }} @else {{ $order->currency_symbol_position == 'left' ? $order->currency_symbol : '' }} 0 {{ $order->currency_symbol_position == 'right' ? $order->currency_symbol : '' }} @endif | {{ $order->currency_symbol_position == 'left' ? $order->currency_symbol : '' }}{{ $order->total }}{{ $order->currency_symbol_position == 'right' ? $order->currency_symbol : '' }} | {{ str_replace('_', ' ', $order->serving_method) }} | {{ str_replace('_', ' ', $order->payment_status) }} | {{ str_replace('_', ' ', $order->order_status) }} | {{ str_replace('_', ' ', $order->completed) }} | {{ str_replace('_', ' ', $order->method) }} | {{ Carbon\carbon::parse($order->created_at)->format('m-d-y') }} |