@extends('layouts.app')
@section('content')
@if(!$deviceInventory->isEmpty())
{{__("Available devices (total)")}}
{{__("Equipment")}} |
{{__("Quantity")}} |
@foreach($deviceInventory as $stock)
{{$stock->device}} |
{{$stock->quantity}} |
@endforeach
@endif
@if(!$equipmentInventory->isEmpty())
{{__("Available goods (total)")}}
{{__("Equipment")}} |
{{__("Quantity")}} |
@foreach($equipmentInventory as $stock)
{{$stock->equipment}} |
{{$stock->quantity}} |
@endforeach
@endif
@if(!$materialInventory->isEmpty())
{{__("Available material (total)")}}
{{__("Material")}} |
{{__("Quantity")}} |
@foreach($materialInventory as $stock)
{{$stock->material}} |
{{$stock->quantity}} |
@endforeach
@endif
@endsection