@extends('layouts.app') @section('content')
{{__('texte.locations_arr.show.name')}}: {{ $location->name }}
{{__('texte.locations_arr.show.phone_code')}}: {{ $location->code }}
{{__('texte.locations_arr.show.postal_code')}}: {{ $location->zip }}
{{__('texte.locations_arr.show.active')}}: {{ $location->active==1 ? __('texte.locations_arr.show.yes') : __('texte.locations_arr.show.no') }}
{{__('texte.locations_arr.show.country')}}: {{ $location->area->country->name }}
{{__('texte.locations_arr.show.area')}}: {{ $location->area->name }}
@if(count($location->storages)>0)
{{__('texte.locations_arr.show.storages')}}: @foreach ($location->storages as $storage) {{ $storage->name }} @endforeach
@endif
@endsection