@extends('backend.layouts.app') @section('title') {{ __('country_list') }} @endsection @section('content')

{{ __('country_list') }} {{ $allCountries->count() }}

@if (userCan('country.create'))   {{ __('create') }} @endif
@if ($setting->app_country_type === 'single_base')
{{ __('app_country') }}
@csrf
@endif
@if ($countries->count() > 1) @endif @if (userCan('country.update') || userCan('country.delete')) @endif @if ($countries->count() > 0) @foreach ($countries as $country) @if ($countries->count() > 1) @endif @if (userCan('country.update') || userCan('country.delete')) @endif @endforeach @else @endif
# {{ __('image') }} {{ __('name') }}{{ __('action') }}
id }} class="sub_chk" id="checkbox{{ $country->id }}">
{{ $country->id }}
{{ $country->name }}
{{ $country->name }} @if (userCan('country.update')) @endif @if (userCan('country.delete'))
@method('DELETE') @csrf
@endif
{{ __('no_data_found') }}
@if (request('perpage') != 'all' && $countries->total() > $countries->count())
{{ $countries->links() }}
@endif
@endsection @section('style') {{-- Flat Icon Css Link --}} @endsection @section('script') {{-- Flat Icon Css Link --}} @endsection