@extends('backend.index') @section('content')
Add new country
{!! makeCountryDropDown('country', 'form-control select2-active', request()->input('country')) !!}
Results/Page
Options
input('fixed')) checked @endif>
input('hidden')) checked @endif>
Clear Filter
@csrf @foreach ($cities as $index => $city) @endforeach
Name District Country Fixed Visible Action
{{ $city->name }} {{ $city->district }} @if(isset($city->country)) {{ $city->country->name }} @endif @if($city->fixed) Yes @else No @endif @if($city->visibility) Yes @else No @endif
{{ $cities->appends(request()->input())->links() }}
@endsection