@foreach ($payments_status as $payment_status) @endforeach
@if(request()->hasAny('keywords', 'payment_status', 'date_range')) {{ __('Clear') }} @endif {{ __('Filter') }}
{{ __('Orders') }}
{{ __('Total ' . $orders->total() . ' orders') }}
{{ __('Sub Total') }}
{{ format_amount($total_subtotal) }}
{{ __('Discount') }}
{{ format_amount($total_discount) }}
{{ __('Grand Total') }}
{{ format_amount($total_amount) }}
@forelse ($orders as $invoice) @empty @endforelse
{{ __('ID') }} {{ __('E-mail') }} {{ __('Sub Total') }} {{ __('Discount') }} {{ __('Grand Total') }} {{ __('Payment Status') }} {{ __('Created At') }}
{{ $invoice->id }} {{ $invoice->customer->email }} {{ $invoice->formatted_sub_total }} {{ $invoice->formatted_discount }} {{ $invoice->formatted_grand_total }} {{ $invoice->payment_status->name() }} {{ $invoice->formatted_created_at }}
{{ __('Empty.') }}
{{ $orders->links() }}