@extends('admin::layout.default') @section('content') @include('admin::blocks.notification_error') @if(session('msg_success'))
{{ session('msg_success') }}
@endif

Countries

Read-only ISO country catalog with manual sync support.

@csrf
@forelse ($countries as $country) @empty @endforelse
Country ISO2 ISO3 Region Status
@if ($country->local_flag_path) {{ $country->name_common }} @endif
{{ $country->name_common }}
@if ($country->name_official) {{ $country->name_official }} @endif
{{ $country->iso2 }} {{ $country->iso3 ?? '—' }} {{ $country->region ?? '—' }} @if ($country->active) Active @else Inactive @endif @if ($country->is_featured) Featured @endif
No countries found.
@endsection