@if ($orders->count() > 0)
| {{ __('Order Number') }} | {{ __('Order Date') }} | {{ __('Order Status') }} | {{ __('Payment Status') }} | {{ __('Amount') }} | {{ __('Payment Method') }} | {{ __('Items') }} | {{ __('View') }} | {{ __('Invoice') }} |
|---|---|---|---|---|---|---|---|---|
| {{ $order->code }} | {{ $order->created_at->format('d M Y') }} | {!! sales_order_status_badge($order->status) !!} | {!! sales_payment_status_badge($order->payment_status) !!} | {{ format_price($order->sub_total, null, false, true) }} | {!! sales_payment_method($order->payment_method) !!} | {{ $order->products_count }} {{ __('item(s)') }} | {{ __('view') }} | {{-- {{ __('Download') }} --}} |
{{ __('Showing') }} {{ $orders->firstItem() }} {{ __('to') }} {{ $orders->lastItem() }} {{ __('of') }} {{ $orders->total() }} {{ __('entries') }}
{{ __('No orders found.') }}
{{ __('Start Shopping') }}