@extends('layouts.app') @section('content') {{__("Inventory")}} {{$user->ime.' '.$user->prezime}} @csrf {{__("Material")}} -- {{__("Materials")}} -- @foreach($mats as $mat) {{$mat->material}} @endforeach {{__("Warehouse")}} @foreach($storages as $storage) {{$storage->naziv}} @endforeach {{__('Quantity')}} @if(!$materials->isEmpty()) {{__("Materials")}} {{__('Material')}} {{__('Quantity')}} @foreach($materials as $mat) {{$mat->material}} {{$mat->quantity}} @endforeach @endif @endsection