@extends('layouts.adminapp') @section('content') {{-- Country --}}

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

{{__('lng.CountryTable')}}
{{__('lng.CreateNew')}}
@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')

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

@endif
@endsection