@include('pages.layout.flash_messages')
@include('components.breadCrumb.list',['path' => route('visa-types.create'),'section' => __('Visa types'), 'excel_path'=>route('visa-types.download-excel'), 'pdf_path'=>route('visa-types.download-pdf'),'permssion' => 'visa_types.manage']) {!! Form::open(['route'=>['visa-types.index'], 'method'=>'get']) !!}
{!! Form::submit(__('Search ..'), ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
@forelse ($types as $type) @empty
{{__("No entry found")}}
@endforelse
{{__("ID")}} {{__("NAME")}} {{__("CREATION DATE")}} {{__("Action")}}

{{$type->id}}

{{$type->name}}
{{$type->created_at->format('Y-m-d')}} {{ __('Edit') }}
@csrf @method('DELETE')
{{ $types->appends(Request::only(['search']))->links("pagination::bootstrap-4") }}