@extends('layouts.app') @section('content') {{__('History')}} {{__("Inventory")}} ({{$storage->naziv}}) @csrf {{__('Type')}} -- {{__('Type')}} -- @foreach($toolTypes as $type) {{$type->type}} @endforeach {{__('Tools')}} -- {{__('Tools')}} -- {{__('Quantity')}} @if(!$tools->isEmpty()) {{__('Inventory')}} {{__('Type')}} {{__('Tools')}} {{__('Provider')}} {{__('Invoice number')}} {{__('Quantity')}} @foreach($tools as $tool) {{$tool->type}} {{$tool->tool}} {{$tool->provider}} {{$tool->invoice_number}} {{$tool->quantity}} @endforeach @endif @endsection