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

State

Title

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

Country

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

Longitude

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

Latitude

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

Image

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

Status

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

Created At

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

Description

{!! $state->description !!}

@endsection @section('scripts') @endsection