@extends('layouts.app') @section('content')
| Barcode | Product Name | Category | Quantity | Unit Cost | Selling Price | Total Value |
|---|---|---|---|---|---|---|
| {{ $row->barcode ?: '-' }} | {{ $row->name }} | {{ $row->category }} | {{ number_format($row->quantity, 2) }} | {{ \App\Models\SystemSetting::formatMoney($row->unit_cost) }} | {{ \App\Models\SystemSetting::formatMoney($row->selling_price) }} | {{ \App\Models\SystemSetting::formatMoney($row->total_value) }} |
| No products found for this filter. | ||||||
| Totals | {{ number_format($summary->total_quantity, 2) }} | {{ \App\Models\SystemSetting::formatMoney($summary->total_unit_cost) }} | {{ \App\Models\SystemSetting::formatMoney($summary->total_selling_price) }} | {{ \App\Models\SystemSetting::formatMoney($summary->total_value) }} | ||