@extends('layouts.admin') @section('title', 'Country Details') @section('content')

{{ $country->name }}

Back to List

Country Code: {{ $country->code }}

Country Name: {{ $country->name }}

Region: @if($country->region) {{ $country->region }} @else Not specified @endif

Status: @if($country->active) Active @else Inactive @endif

Created: {{ $country->created_at->format('M j, Y H:i') }}

Last Updated: {{ $country->updated_at->format('M j, Y H:i') }}

@endsection