{!! Form::label('name', 'NOMBRE:') !!}

{{ $device->name }}

{!! Form::label('model', 'MODELO:') !!}

{{ $device->model }}

{!! Form::label('brand', 'MARCA:') !!}

{{ $device->brand }}

{!! Form::label('type', 'TIPO DE DISPOSITIVO:') !!}

{{ $device->type }}

{!! Form::label('weight', 'PESO:') !!}

{{ $device->weight }}

{!! Form::label('clave', 'Clave:') !!}

{{ $device->clave }}

{!! Form::label('admission_date', 'Fecha DE PRÓXIMA REVISIÓN:') !!}

{{ $device->admission_date }}

{{--
{!! Form::label('useful_life', 'VIDA ÚTIL:') !!}

{{ $device->useful_life }}

--}}
{!! Form::label('products', 'PRODUCTOS QUE PRODUCE:') !!} @foreach ($productos as $item)

- {{ $item->product->description }}

@endforeach
{!! Form::label('area_id', 'ÁREA:') !!}

{{ $device->area->name }}