@extends('layouts.admin') @section('content')
{{ $country->name }}
Record ID # {{ $country->id }}
Name {{ $country->name }}
Official Name {{ $country->official_name }}
Country Code {{ $country->country_code }}
2 letter code {{ $country->two_letter_code }}
Alpha 2 Code {{ $country->alpha_2_code }}
Alpha 3 code {{ $country->alpha_3_code }}
Numeric Code {{ $country->numeric_code }}
Internet cc tld {{ $country->int_cc_tld }}
International Organizations @php $intOrgsArray=unserialize($country->int_orgs) @endphp @if ($intOrgsArray) @foreach ($intOrgsArray as $item) {{ $orgs[$item] }} @endforeach @endif
Time Zone {{ $country->time_zone }}
Last modified {{ $country->updated_at }}
Status {{ $country->status==1?'Active':'Inactive' }}
Edit Delete
@endsection