@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']) !!}
{!! Form::submit(__('Search ..'), ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
{{-- --}} @forelse ($invoices as $invoice) {{-- --}} @empty
{{__("No entry found")}}
@endforelse
{{__("ID")}} {{__("CUSTOMER")}} {{__("Date of travel")}} {{__("COUNTRY")}} {{__("Type")}} {{__("No. of travelers")}} {{__("CREATION DATE")}} {{__("Status")}} {{__("Payment status")}} {{__("Action")}}

{{$invoice->id}}

{{$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) }}
@if (!isset($no_pagination))
{{ $invoices->appends(Request::only(['search']))->links("pagination::bootstrap-4") }}
@endif