@push('title') Inventory Report @endpush
Inventory Report
has('low_stock') ? 'checked' : '' }}>
Reset
{{ number_format($summary['total_items']) }}

Total Items in Stock

{{ number_format($summary['total_cost_value'], 2) }}

Stock Value (Cost)

{{ number_format($summary['total_retail_value'], 2) }}

Stock Value (Retail)

@forelse($inventory as $batch) @empty @endforelse
Product Warehouse Batch Qty Alert Limit Cost Wholesale Retail Total Cost
{{ $batch->product->name }} {{ $batch->product->code }} @if($batch->productVariation->variationType) | {{ $batch->productVariation->variationType->name }} @endif
{{ $batch->warehouse->name ?? 'N/A' }} {{ $batch->batch_no }} {{ $batch->current_stock }} {{ $batch->productVariation->stock_alert }} {{ number_format($batch->cost_price, 2) }} {{ number_format($batch->wholesale_price, 2) }} {{ number_format($batch->retail_price, 2) }} {{ number_format($batch->current_stock * $batch->cost_price, 2) }}
No inventory records found.