@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') }} | {!! BaseHelper::clean($order->status->toHtml()) !!} | {{ $paymentStatusText }} | {{ format_price($order->sub_total, null, false, true) }} | @if (is_plugin_active('payment') && $order->payment && $order->payment->id && $order->payment->payment_channel && $order->payment->payment_channel->label()) {{ $order->payment->payment_channel->label() }} @else {{ __('Not specified') }} @endif | {{ $order->products_count }} {{ __('item(s)') }} | {{ __('view') }} | {{--@if ($order->isInvoiceAvailable()) {{ __('Download') }} @else - @endif | --}}{{-- {{ __('Download') }} --}} |
{{ __('Showing') }} {{ $orders->firstItem() }} {{ __('to') }} {{ $orders->lastItem() }} {{ __('of') }} {{ $orders->total() }} {{ __('entries') }}
{{ __('No orders found.') }}
{{ __('Start Shopping') }}