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

{{__("Inventory")}} ({{$storage->naziv}})

@csrf
@if(!$materials->isEmpty())

{{__('Inventory')}}

@foreach($materials as $mat) @endforeach
{{__('Material')}} {{__('Quantity')}}
{{$mat->material}} {{$mat->quantity}}
@endif @endsection