@extends('layouts.app') @section('content')

{{ $country->title }} @include('admin.common.drop-down-menu', [ 'links' => [ [ 'route' => 'admin.countries.edit', 'title' => trans('global.app_edit'), 'type' => 'edit', 'icon' => '', 'permission_key' => 'country_edit', ], [ 'route' => 'admin.countries.destroy', 'title' => trans('global.app_delete'), 'type' => 'delete', 'icon' => '', 'redirect_url' => url()->previous(), 'permission_key' => 'country_delete', ], ], 'record' => $country, ] )

@if ( 'yes' === $show_page_heading )
@lang('global.app_view')
@endif
@lang('global.app_view')
@can('country_edit') @lang('global.app_edit') @endcan
@lang('global.countries.fields.dailcode') {{ $country->dialcode }}
@lang('global.countries.fields.shortcode') {{ $country->shortcode }}
@lang('global.countries.fields.title') {{ $country->title }}
@if ( 'active' === $tabs['companies_active'] )
@include('admin.contact_companies.records-display')
@endif @if ( 'active' === $tabs['contacts_active'] )
@include('admin.contacts.records-display')
@endif

 

@lang('global.app_back_to_list')
@stop @section('javascript') @if ( 'active' === $tabs['companies_active']) @include('admin.contact_companies.records-display-scripts', [ 'type' => 'country', 'type_id' => $country->id ]) @endif @if ( 'active' === $tabs['contacts_active'] ) @include('admin.contacts.records-display-scripts', [ 'type' => 'country', 'type_id' => $country->id ]) @endif @endsection