@extends('layouts.app') @section('template_title') {{ $country->name ?? __('Show') . " " . __('Country') }} @endsection @section('content')
{{ __('Show') }} Country
Name: {{ $country->name }}
Status: @if($country->status == 1) {{ __('Yes') }} @else {{ __('No') }} @endif
@endsection