{{ __('New Invoice') }}
@foreach ($payments_status as $payment_status) @endforeach
@if(request()->hasAny('keywords', 'payment_status', 'date_range')) {{ __('Clear') }} @endif {{ __('Filter') }}
@forelse ($invoices as $invoice) @empty @endforelse
{{ __('Invoice No') }} {{ __('E-mail') }} {{ __('Sub Total') }} {{ __('Discount') }} {{ __('Grand Total') }} {{ __('Payment Status') }} {{ __('Payment Reference') }} {{ __('Created At') }} {{ __('Action') }}
{{ $invoice->invoice_no }} {{ $invoice->customer->email }} {{ $invoice->formatted_sub_total }} {{ $invoice->formatted_discount }} {{ $invoice->formatted_grand_total }} {{ $invoice->payment_status->name() }} {{ $invoice->payment?->remote_payment_reference }} {{ $invoice->formatted_created_at }}
{{ __('Copy Link') }} @if ($invoice->canEdit()) {{ __('Edit') }} @endif @if ($invoice->canRestore()) {{ __('Restore') }} @endif @if ($invoice->canTrash()) {{ __('Trash') }} @endif @if ($invoice->canDelete()) {{ __('Delete') }} @endif
{{ __('Empty.') }}
{{ $invoices->links() }}