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

@lang('crud.countries.show_title')

@lang('crud.countries.inputs.code')
{{ $country->code ?? '-' }}
@lang('crud.countries.inputs.name')
{{ $country->name ?? '-' }}
@lang('crud.countries.inputs.country_code')
{{ $country->country_code ?? '-' }}
@lang('crud.common.back') @can('create', App\Models\Country::class) @lang('crud.common.create') @endcan
@endsection