@extends('layouts.print') @section('content')

Inventory List

@php($serial = 1) @foreach($items as $item) @endforeach
{{__('commons.sl')}} Inventory {{__('inventory.total_amount')}} {{__('inventory.consume_amount')}} {{__('inventory.stock_amount')}} {{__('inventory.total_cost')}} {{__('commons.created_by')}}
{{ $serial++ }} {{ $item->name }} {{ $item->totalStockQuantity }} {{ $item->totalConsumeQuantity }} {{ $item->currentStockQuantity }} {{ $item->totalStockCost }} {{ optional($item->creator)->name }}
@endsection