@extends('layouts.app') @section('title') Inventory Report @stop @section('breadcrumb')
@stop @section('css') @stop @section('content')| Product Name | Received Qty | Issue Qty | Balance Qty |
|---|---|---|---|
| {{$i->item_code}} - {{$i->item_name}} ({{$i->unit}}) | {{number_format($in[$i->id])}} | {{number_format($out[$i->id])}} | {{number_format($remaining[$i->id])}} |
| Total | {{number_format($inT)}} | {{number_format($outT)}} | {{number_format($remT)}} |