@extends('layouts.app') @section('content')
{{ $products->total() }}
{{ number_format($totalStockValue, 2) }}
{{ $lowStockCount }}
| Product Name | Current Stock | Unit | Cost Price | Selling Price | Stock Value | Status | Actions |
|---|---|---|---|---|---|---|---|
|
{{ $product->name }}
|
{{ $product->quantity }}
|
{{ $product->unit }}
|
{{ number_format($product->input_price_per_unit, 2) }}
|
{{ number_format($product->selling_price_per_unit, 2) }}
|
{{ number_format($product->quantity * $product->input_price_per_unit, 2) }}
|
@if($product->quantity < 10) Low Stock @elseif($product->quantity < 20) Medium Stock @else In Stock @endif |