@extends('layouts.app') @section('title', 'Inventory Valuation') @section('breadcrumb')
Current stock value as of {{ now()->format('d M Y H:i') }}
| Category | Items | Qty | Cost Value |
|---|---|---|---|
| {{ $catName }} | {{ $cat['count'] }} | {{ number_format($cat['qty']) }} | ৳{{ number_format($cat['cost_value'],0) }} |
| Total | {{ $summary['total_items'] }} | {{ number_format($summary['total_qty']) }} | ৳{{ number_format($summary['total_cost_value'],0) }} |
| Product / Variant | SKU | Category | Stock | Cost Price | Sell Price | Cost Value | Sell Value | Potential Profit |
|---|---|---|---|---|---|---|---|---|
|
{{ $v->product->name }}
{{ $v->variant_name }}
|
{{ $v->sku }} |
{{ $v->product->category?->name }} | {{ $v->current_stock }} | ৳{{ number_format($v->cost_price,2) }} | ৳{{ number_format($v->selling_price,2) }} | ৳{{ number_format($v->current_stock * $v->cost_price,0) }} | ৳{{ number_format($v->current_stock * $v->selling_price,0) }} | ৳{{ number_format($v->current_stock * ($v->selling_price - $v->cost_price),0) }} |
| Totals: | ৳{{ number_format($summary['total_cost_value'],0) }} | ৳{{ number_format($summary['total_sell_value'],0) }} | ৳{{ number_format($summary['potential_profit'],0) }} | |||||