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

Gerir Armazém: {{ $armazem->nome }}

@foreach ($armazem->setores as $setor)
Setor: {{ $setor->nome }}
Produtos no Setor:
    @foreach ($setor->inventario as $inventario)
  • {{ $inventario->produto->name }} - {{ $inventario->quantidade }}
  • @endforeach
@endforeach
@endsection @push('scripts') @endpush