@extends('admin.layouts.app') @section('title', 'Countries') @section('page-title', 'Countries') @section('content')
Manage study abroad destination cards shown on the landing page.
| # | 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' }} |