{{-- Title Row --}} {{-- Main Headers --}} @php $serialNumber = 1; @endphp @foreach($storeProducts as $product) @php $serialNumber++; @endphp @endforeach {{-- Summary Row --}}
STORE LEVELS
S/N CATEGORY PRODUCT PRODUCT CODE BUYING PRICE IN STOCK SELLING PRICE RESERVE PRICE
{{ $serialNumber }} {{ \App\Models\BusinessProduct::find($product->product?->item_id)->category?->name ?? '' }} {{ $product->product->product_name }} {{ $product->product?->product_code ?? '' }} {{ number_format((float)$product->buying_price) }} {{ $product->quantity }} {{ $product->product->unit->name }} {{ number_format((float)$product->product->selling_price) }} {{ number_format((float)$product->product->reserve_price) }}
Buying Price Stock Value: {{ number_format((float)$summary['totalBuying']) }} Selling Price Stock Value: {{ number_format((float)$summary['totalSelling']) }}