@extends('layouts.layout-horizontal') @section('title', 'Less Stock Items') @section('content')
| Item Name | Qty Purchased | Avg Purchase Rate | Qty Sold | Avg Sold Rate | Qty in Inventory |
|---|---|---|---|---|---|
| {{ $product->name }} | {{ indian_number($product->qty_purchased, 2) }} | {{ indian_number($product->avg_purchase_rate, 2) }} | {{ indian_number($product->qty_sold, 2) }} | {{ indian_number($product->avg_sold_rate, 2) }} | {{ indian_number($product->inventory, 2) }} |