@extends('layouts.adminapp') @section('title') {{ __('lng.Country') }} @endsection @section('active_register', 'active') @section('open_register', 'open') @section('open_field', 'open') @section('active_field', 'active') @section('active_country', 'active') @section('content')

{{ __('lng.Country') }}

{{ __('lng.CountryTable') }}
@if ($SearchResult) @php echo $SearchResult @endphp @else
@php $si=0; @endphp @foreach ($Countries as $Country) @endforeach
{{ __('lng.SiNo') }} {{ __('lng.Title') }} {{ __('lng.ShortName') }} {{ __('lng.Telephonecode') }} {{ __('lng.Narration') }} {{ __('lng.Action') }}
{{ ++$si }} {{ $Country->title }} {{ $Country->shortname }} {{ $Country->telephonecode }} {{ $Country->narration }}
@csrf @method('delete')

{{ __('lng.Showing') }} {{ $Countries->count() }} {{ __('lng.Items') }}

@endif
@endsection