@extends('layouts/layoutMaster') @section('title', $title ?? __('City Details')) @section('content')
{{ __('City Details') }}
{{ __('Id') }} {{ $city->id }}
{{ __('Name') }} {{ $city->name }}
{{ __('Name') }} ({{ __('Arabic') }}) {{ $city->translate('name', 'ar') }}
{{ __('Name') }} ({{ __('English') }}) {{ $city->translate('name', 'en') }}
{{ __('Created At') }} {{ $city->created_at }}
{{ __('Number of Regions') }} {{ $city->regions->count() }}
@if($city->regions->count() > 0)
{{ __('Regions') }}
@foreach($city->regions as $region) @endforeach
{{ __('Id') }} {{ __('Name') }} {{ __('Created At') }} {{ __('Actions') }}
{{ $region->id }} {{ $region->name }} {{ $region->created_at }} {{ __('View') }} {{ __('Edit') }}
@endif @endsection