@include('pages.layout.flash_messages')
{!! Form::open(['route'=>['consultation.countries.index'], 'method'=>'get']) !!} @include('pages.layout.search') {!! Form::close() !!}
@forelse ($countries as $country) @empty
{{__("No entry found")}}
@endforelse
{{__("ID")}} {{__("NAME")}} {{__("CREATION DATE")}}

{{$country->id}}

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