@include('components.breadCrumb.list',['path' => route('visa.countries.create'),'section' => __('Visa countries'),'permssion' => 'visa_countries.manage', 'excel_path'=>route('visa.countries.download-excel'), 'pdf_path'=>route('visa.countries.download-pdf')])
{!! Form::open(['route'=>['visa.countries.index'], 'method'=>'get']) !!}
{!! Form::close() !!}
{!! Form::submit(__('Search ..'), ['class' => 'btn btn-primary']) !!}
| {{__("ID")}} | {{__("Image")}} | {{__("NAME")}} | {{__("Type")}} | {{__("CREATION DATE")}} | {{__("Status")}} | {{__("Action")}} |
|---|---|---|---|---|---|---|
|
{{$country->id}} |
@if($country->flag)
|
{{$country->name}} |
@foreach ($country->visaTypes as $key => $type) @if ($loop->last) {{ $type->name }} @else {{ $type->name }}, @endif @endforeach | {{$country->created_at->format('y/m/d')}} |
@if($country->active)
{{ __('Active') }}
@else
{{ __('In-active') }}
@endif
|
{{ __('Edit') }} |
{{ $countries->appends(Request::only(['search']))->links("pagination::bootstrap-4") }}