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

Country Details

Back
Country Name:
{{ $country->country_name ?? '' }}
Country Code:
{{ $country->country_code ?? '' }}
Status:
@if (isset($country->status) && $country->status == 1) @else @endif
@can('region-list')

Regions

@can('region-import') @endcan @can('region-create') @endcan
{{-- --}}
NoCountryName Created At Status Actions
@endcan
@endsection @section('page-js') @endsection