@extends('admin.layouts.app') @section('title', __('dashboard.country_details')) @section('content')
{{ $country->code }}

{{ $country->getTranslation('name', app()->getLocale()) }}

@if($country->phone_code)

+{{ $country->phone_code }}

@endif
@if($country->is_active) {{ __('dashboard.active') }} @else {{ __('dashboard.inactive') }} @endif
{{ __('dashboard.general_info') }}
{{ $citiesDataTable->table(['class' => 'table table-bordered table-striped dt-responsive nowrap w-100']) }}
@endsection @push('scripts') {{ $citiesDataTable->scripts() }} @endpush