@extends('layouts.app') @section('title', 'Stock Valuation Report') @section('page_title', 'Inventory Stock Valuation Report') @section('content')
| Product Name / SKU | HSN Code | Current Stock | Cost Price | Total Asset Value | Selling Price | Total Retail Value | Potential Margin |
|---|---|---|---|---|---|---|---|
|
{{ $p->name }}
SKU: {{ $p->sku }}
|
{{ $p->hsn_code }} | {{ number_format($p->current_stock, 0) }} {{ $p->unit ? $p->unit->short_code : '' }} | ₹{{ number_format($p->purchase_price, 2) }} | ₹{{ number_format($costVal, 2) }} | ₹{{ number_format($p->selling_price, 2) }} | ₹{{ number_format($retailVal, 2) }} | ₹{{ number_format($margin, 2) }} |
| Total Valuation: | {{ number_format($totalStockUnits, 0) }} Units | ₹{{ number_format($totalCostValuation, 2) }} | ₹{{ number_format($totalRetailValuation, 2) }} | ₹{{ number_format($potentialProfit, 2) }} | |||