@forelse($all_countries as $country) @empty @endforelse
{{ __('Country') }} {{ __('Status') }}
{{ $country->country }} @if($country->status == 1) {{ __('Active') }} @else {{ __('Inactive') }} @endif
@csrf
@csrf
{{ __('No countries found.') }}
@include('backend.layout.partials.paginator', ['paginator' => $all_countries, 'label' => __('countries')])