@extends('admin.layouts.app') @section('title', __('dashboard.city_details')) @section('content')

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

@if($city->country)

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

@endif
@if($city->is_active) {{ __('dashboard.active') }} @else {{ __('dashboard.inactive') }} @endif
{{ __('dashboard.general_info') }}
@endsection