@extends('layouts.app') @section('content')
Stock Value Report
@if($generated)
Total Products {{ number_format($summary->total_products) }}
Total Quantity {{ number_format($summary->total_quantity, 2) }}
Total Stock Value {{ \App\Models\SystemSetting::formatMoney($summary->total_value) }}
@forelse($rows as $row) @empty @endforelse
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) }}
@endif
@endsection