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

Country

Title

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

Longitude

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

Latitude

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

Currency

{{ $country->currency ? $country->currency : '--' }}

Currency Symbol

{{ $country->currency_symbol ? $country->currency_symbol : '--' }}

Capital

{{ $country->capital ? $country->capital : '--' }}

Phone Code

{{ $country->phone_code ? $country->phone_code : '--' }}

ISO Code 2

{{ $country->iso_code_2 ? $country->iso_code_2 : '--' }}

ISO Code 3

{{ $country->iso_code_3 ? $country->iso_code_3 : '--' }}

Region

{{ $country->region ? $country->region : '--' }}

Sub Region

{{ $country->sub_region ? $country->sub_region : '--' }}

Native

{{ $country->native ? $country->native : '--' }}

Emoji

{{ $country->emoji ? $country->emoji : '--' }}

Image

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

Status

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

Created At

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

Description

{!! $country->description !!}

@endsection @section('scripts') @endsection