@extends('layouts.app') @section('content')
| Code | Item Name | Type | Unit | Stock Qty | Rate | Value |
|---|---|---|---|---|---|---|
| {{ $item->code }} | {{ $item->name }} | {{ $item->type }} | {{ $item->unit }} | {{ number_format($item->stock_qty, 2) }} | {{ number_format($item->purchase_price, 2) }} | {{ number_format($item->stock_qty * $item->purchase_price, 2) }} |
| No items found | ||||||
| Total: | {{ number_format($totalStock, 2) }} | - | Rs. {{ number_format($totalValue, 2) }} | |||