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

Inventory Report

@foreach ($product as $item) @endforeach
Branch Product Category Total Qty Total Available Qty Total Selling Qty
{{ $item->branch->name ?? '' }} {{ $item->name ?? '' }} {{ ($item->category->name ?? '') . (isset($item->category->unitOfMass) ? ' (' . $item->category->unitOfMass->name . ')' : '') }} {{ $item->total_qty ?? '0' }} {{ $item->qty ?? '0' }} {{ max(0, round($item->total_qty - $item->qty, 0)) ?? '' }}
@endsection