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

{{__('texte.locations_arr.show.show_location')}}

{{__('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')}}: {{ App\Model::ACTIVE[$location->active] }}
{{__('texte.locations_arr.show.country')}}: {{ $location->area->country->name }}
{{__('texte.locations_arr.show.area')}}: {{ $location->area->name }}
{{__('texte.locations_arr.show.contragents')}}: @foreach ($location->contragents as $contragent) {{ $contragent->company_name ?? $contragent->user->name }} @endforeach
{{__('texte.locations_arr.show.objects')}}: @foreach ($location->objects as $object) {{ $object->user->name }} @endforeach
{{__('texte.locations_arr.show.storages')}}: @foreach ($location->storages as $storage) {{ $storage->name }} @endforeach
@endsection