@extends('backend.index') @section('content')
Add new country
{!! makeRegionDropDown("region", 'select2-active', request()->input('region')) !!}
{!! makeDropDown($governmentForms, "government_form", request()->input('government_form'), false) !!}
Options
input('fixed')) checked @endif>
input('hidden')) checked @endif>
Clear Filter
@csrf @foreach ($countries as $index => $country) @endforeach
Name Region Local Name Government Form Fixed Visible Action
{{ $country->name }} {{ $country->region ? $country->region->name : '' }} {{ $country->local_name }} {{ $country->government_form }} @if($country->fixed) Yes @else No @endif @if($country->visibility) Yes @else No @endif
{{ $countries->appends(request()->input())->links() }}
@endsection