@extends('layouts.app') @section('content') {{__('History')}} {{__("Inventory")}} ({{$storage->naziv}}) @csrf {{__("Uniform type")}} -- {{__("Type")}} -- @foreach($uniformTypes as $type) {{$type->type}} @endforeach {{__("Uniform")}} -- {{__("Uniform")}} -- {{__("Quantity")}} @if(!$uniforms->isEmpty()) {{__("Inventory")}} {{__('Type')}} {{__('Uniform')}} {{__('Color')}} {{__('Size')}} {{__('Quantity')}} @foreach($uniforms as $uni) {{$uni->type}} {{$uni->uniform}} {{$uni->color}} {{$uni->size}} {{$uni->quantity}} @endforeach @endif @endsection