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

{{__('texte.countries_arr.show.show_country')}}

{{__('texte.countries_arr.show.name')}}: {{ $country->name }}
{{__('texte.countries_arr.show.phone_code')}}: {{ $country->code }}
{{__('texte.countries_arr.show.vat')}}: {{ $country->vat }}
{{__('texte.countries_arr.show.active')}}: {{ App\Model::ACTIVE[$country->active] }}
{{__('texte.countries_arr.show.areas')}}: @foreach ($country->areas as $area) {{ $area->name }} @endforeach
{{__('texte.countries_arr.show.locations')}}: @foreach ($country->locations as $location) {{ $location->name }} @endforeach
@endsection