@if($allCountry->isEmpty())
@else
@if(auth()->user()->hasPermissionTo('Country - Edit Country') || auth()->user()->hasPermissionTo('Country - Delete Country')) @endif @php $counter = ($allCountry->currentPage() - 1) * $allCountry->perPage() + 1; @endphp @foreach($allCountry as $country) @if(auth()->user()->hasPermissionTo('Country - Edit Country')) @endif @if(auth()->user()->hasPermissionTo('Country - Delete Country')) @endif @endforeach
{{ __('country.no')}} {{ __('country.name')}} {{ __('country.code')}} {{ __('country.phonecode')}} {{ __('country.created_date')}}
{{$country->name}} {{$country->code}} {{$country->phonecode}} {{ getHijriDate($country->created_at) }}
@endif