@include('pages.layout.flash_messages')
@include('components.breadCrumb.list',['path' => route('transportation-countries.create'), 'excel_path'=>route('transportation-countries.download-excel'), 'pdf_path'=>route('transportation-countries.download-pdf'),'section' => __('Transportation countries'),'permssion' => 'transportation_countries.manage']) {!! Form::open(['route'=>['transportation-countries.index'], 'method'=>'get']) !!}
{!! Form::submit(__('Search ..'), ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
@forelse ($countries as $country) @empty
{{__("No entry found")}}
@endforelse
{{__("ID")}} {{__("Image")}} {{__("NAME")}} {{__("Status")}} {{__("CREATION DATE")}} {{__("Action")}}
@if($country->flag) user1 @else user1 @endif
{{$country->name}}
@if($country->active) {{ __('Active') }} @else {{ __('In-active') }} @endif
{{$country->created_at->format('Y-m-d')}} {{ __('Edit') }}
@csrf @method('DELETE')
{{ $countries->appends(Request::only(['search','status']))->links("pagination::bootstrap-4") }}