@extends('system-mgmt.country.base') @section('action-content')

List of countries

{{ csrf_field() }} @component('layouts.search', ['title' => 'Search']) @component('layouts.two-cols-search-row', ['items' => ['Country_Code', 'Name'], 'oldVals' => [isset($searchingVals) ? $searchingVals['country_code'] : '', isset($searchingVals) ? $searchingVals['name'] : '']]) @endcomponent @endcomponent
@foreach ($countries as $country) @endforeach
Country Code Country Name Action
{{ $country->country_code }} {{ $country->name }}
Update
Country Code Country Name Action
Showing 1 to {{count($countries)}} of {{count($countries)}} entries
{{ $countries->links() }}
@endsection