{{-- table loader --}}
{{__('admin.loading')}}
{{-- table loader --}} {{-- table content --}} @foreach($countries as $country) @endforeach
{{ __('admin.image') }} {{ __('admin.name') }} {{ __('admin.country_code') }} {{ __('admin.control') }}
{{$country->name}} {{$country->key}}
{{-- table content --}} {{-- no data found div --}} @if ($countries->count() == 0)
{{__('admin.there_are_no_matches_matching')}}
@endif {{-- no data found div --}}
{{-- pagination links div --}} @if ($countries->count() > 0 && $countries instanceof \Illuminate\Pagination\AbstractPaginator )
{{$countries->links()}}
@endif {{-- pagination links div --}}