@php $title = 'Countries'; $header = 'Countries'; @endphp @extends('admin.layouts.app') @section('content')

Countries

Add Country
@forelse ($countries as $country) @empty @endforelse
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
@csrf @method('DELETE')
No countries yet

Click "Add Country" to create the first country.

@endsection