@php $title = 'Countries'; $header = 'Countries'; @endphp @extends('admin.layouts.app') @section('content')
| ID | Country Name | ISO2 | ISO3 | Status | Actions |
|---|---|---|---|---|---|
| {{ $country->id }} |
{{ $country->name }}
|
@if ($country->iso2) {{ $country->iso2 }} @else — @endif | @if ($country->iso3) {{ $country->iso3 }} @else — @endif | @if ($country->is_active) Active @else Inactive @endif | |
|
No countries yet
Click "Add Country" to create the first country. |
|||||