{{-- Title Row --}} {{-- Main Headers --}} @php $total = 0; @endphp @foreach($items as $index => $item) @php $total += $item->quantity * $item->selling_price; @endphp {{-- Serial Number --}} {{-- Product Name --}} {{-- Product Code --}} {{-- Quantity --}} {{-- Selling Price --}} @endforeach {{-- Summary Row --}}
UNRECONCILED ITEMS ({{ \Carbon\Carbon::parse($dateFrom)->format('M d, Y') }} - {{ \Carbon\Carbon::parse($dateTo)->format('M d, Y') }})
S/N PRODUCT NAME PRODUCT CODE QUANTITY SELLING PRICE
{{ $index + 1 }} {{ $item->product_name }} {{ $item->product_code }} {{ $item->quantity }} {{ number_format($item->selling_price) }}
Total Records: {{ count($items) }} Total Selling Value: {{ number_format($total) }}