@extends('layouts.app') @section('content')
{{__('texte.places_arr.show.place')}}: {{ $place->place }}
{{__('texte.places_arr.show.corridor')}}: {{ $place->spot->spot }}
{{__('texte.places_arr.show.corridor')}}: {{ $place->spot->corridor->corridor }}
{{__('texte.places_arr.show.zone')}}: {{ $place->spot->corridor->zone->zone }}
{{__('texte.places_arr.show.storage')}}: {{ $place->spot->corridor->zone->storage->name }}
{{__('texte.places_arr.show.active')}}: {{ $place->active==1 ? __('texte.places_arr.show.yes') : __('texte.places_arr.show.no')}}
{{__('texte.places_arr.show.quarantine')}}: {{ $place->quarantine==1 ? __('texte.places_arr.show.yes') : __('texte.places_arr.show.no')}}
@endsection