@include('components.breadCrumb.list_no_create',['section' => __('Visa invoices'), 'excel_path'=>route('visa.invoices.download-excel'), 'pdf_path'=>route('visa.invoices.download-pdf')])
{!! Form::open(['method'=>'get']) !!}
|
{{__("ID")}}
|
{{__("CUSTOMER")}} |
{{__("Date of travel")}}
|
{{__("COUNTRY")}} |
{{--
{{__("Type")}} |
{{__("No. of travelers")}} | --}}
{{__("CREATION DATE")}}
|
{{__("Status")}}
|
{{__("Payment status")}}
|
{{__("Action")}}
|
@forelse ($invoices as $invoice)
|
|
{{$invoice?->customer?->name}}
|
{{ $invoice->date_of_travel }}
|
{{$invoice?->country?->name}}
|
{{--
{{$invoice?->type?->name}}
|
{{ $invoice->number_of_traveler }}
| --}}
{{$invoice->created_at->format('Y-m-d')}}
|
{{ __($invoice->status) }}
|
{{ __($invoice->payment_status) }}
|
|
@empty
@endforelse
@if (!isset($no_pagination))
{{ $invoices->appends(Request::only(['search']))->links("pagination::bootstrap-4") }}
@endif