@extends('super_admins.layouts.master') @section('title') View City @endsection @section('css') @endsection @section('content') @if ($errors->any()) @endif

City

Title

{{ $city->name ? $city->name : '--' }}

Country

{{ $city->country->name ? $city->country->name : '--' }}

State

{{ $city->state->name ? $city->state->name : '--' }}

Longitude

{{ $city->longitude ? $city->longitude : '--' }}

Latitude

{{ $city->latitude ? $city->latitude : '--' }}

Image

@if ($city->image) {{ $city->slug }} @else -- @endif

Status

{{ $city->is_active ? 'Active' : 'Inactive' }}

Created At

{{ date_format($city->created_at, 'd-m-Y') }}

Description

{!! $city->description !!}

@endsection @section('scripts') @endsection