@extends('layouts.app') @section('content') @if(!$deviceInventory->isEmpty())

{{__("Available devices (total)")}}

@foreach($deviceInventory as $stock) @endforeach
{{__("Equipment")}} {{__("Quantity")}}
{{$stock->device}} {{$stock->quantity}}
@endif @if(!$equipmentInventory->isEmpty())

{{__("Available goods (total)")}}

@foreach($equipmentInventory as $stock) @endforeach
{{__("Equipment")}} {{__("Quantity")}}
{{$stock->equipment}} {{$stock->quantity}}
@endif @if(!$materialInventory->isEmpty())

{{__("Available material (total)")}}

@foreach($materialInventory as $stock) @endforeach
{{__("Material")}} {{__("Quantity")}}
{{$stock->material}} {{$stock->quantity}}
@endif @endsection