{{ __('Orders') }}

Show
entries
Search:
@forelse ($orders as $order) @empty @endforelse
{{ __('No.') }} {{ __('Invoice No.') }} @include('inclues._sort-icon', ['field' => 'invoice_no']) {{ __('Customer') }} @include('inclues._sort-icon', ['field' => 'customer_id']) {{ __('Date') }} @include('inclues._sort-icon', ['field' => 'order_date']) {{ __('Paymet') }} @include('inclues._sort-icon', ['field' => 'payment_type']) {{ __('Total') }} @include('inclues._sort-icon', ['field' => 'total']) {{ __('Status') }} @include('inclues._sort-icon', ['field' => 'order_status']) {{ __('Action') }}
{{ $loop->iteration }} {{ $order->invoice_no }} {{ $order->customer->name }} {{ $order->order_date->format('d-m-Y') }} {{ $order->payment_type }} {{ Number::currency($order->total, 'EUR') }} {{ $order->order_status->label() }}
No results found