@extends('layouts.nova') @section('content')

Countries

Read-only ISO country catalog with manual sync support.

@csrf
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
@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 ?? '—' }} {{ $country->active ? 'Active' : 'Inactive' }} @if ($country->is_featured) Featured @endif
No countries found.
{{ $countries->links() }}
@endsection