@include('partials.session')
@if($orders->isEmpty())
No orders found
Try adjusting your search or filter to find what you're looking for.
@else
{{ __('No.') }} |
{{ __('Invoice No.') }} |
{{ __('Customer') }} |
{{ __('Date') }} |
{{ __('Payment') }} |
{{ __('Total') }} |
{{ __('Status') }} |
{{ __('Actions') }} |
@foreach ($orders as $order)
{{ $loop->iteration }}
|
{{ $order->invoice_no }} |
{{ $order->customer->name }} |
{{ $order->order_date->format('d-m-Y') }} |
{{ $order->payment_type }} |
{{ Number::currency($order->total, 'EUR') }} |
{{ \App\Enums\OrderStatus::PENDING->label() }}
|
|
@endforeach
@endif
@endsection