@extends('admin.layout.app') @section('title') {{ $city->name ?? "Show City" }} @endsection @section('header')

Home - City Managment

@endsection @section('content')
{{ __('Show') }} City
{{--
Province: {{ $city->state->province->name ?? "" }}
--}}
State: {{ $city->state->name ?? "" }}
Name: {{ $city->name }}
@endsection