@extends('layout.backend.main')
@section('page_content')
{{--
| # | Product Name | Product Type | Product Lot No. | SKU | Warehouse | Transaction Type | Quantity | Unit Price | Total Value | Action |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ $stock->product->name }} | {{ $stock->product->product_type_id == 1 ? 'Raw Material' : 'Finished Goods' }} | {{ $stock->lot_id }} | {{ $stock->product->sku }} | {{ $stock->lot->warehouse->name ?? "N/A" }} | {{ $stock->TransactionType->name ?? 'N/A' }} | {{ $stock->lot->qty ?? "N/A"}} | ${{ number_format($stock->product->unit_price, 2) }} | ${{ number_format($stock->lot->qty * $stock->product->unit_price, 2 ) }} |