@extends('admin.layouts.app') @section('title', 'Countries') @section('page-title', 'Countries') @section('content')

Countries

Manage study abroad destination cards shown on the landing page.

Add Country
@if($countries->isEmpty())

No countries found

Add your first country
@else
@foreach($countries as $country) @endforeach
# Country Salary Visa Rate Status Actions
{{ $country->sort_order }}
{{ $country->flag ?: strtoupper(substr($country->name, 0, 2)) }}

{{ $country->name }}

{{ $country->badge ?: 'No badge' }}

{{ $country->salary ?? '-' }} {{ $country->visa_rate ?? '-' }} {{ $country->is_active ? 'Active' : 'Inactive' }}
@csrf @method('DELETE')
{{ $countries->links() }}
@endif @endsection