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

{{$community->id}}

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