@extends('admin.layouts.app') @section('title', 'Item Wise Sales Report') @section('page_title', 'Item Wise Sales Report') @section('content')
Item Wise Sales Report
Reset Print
Total Amount

{{ number_format($totalAmount, 2) }}

Total Quantity

{{ number_format($totalQty, 2) }}

Avg Rate

{{ $totalQty > 0 ? number_format($totalAmount / $totalQty, 2) : '0.00' }}

@php $sl = 1; @endphp @forelse($reportData as $row) @empty @endforelse
Sl No Shipment No Invoice No Customer Name Branch Product Code Product Name Quantity Rate Amount
{{ $sl++ }} {{ $row['shipment_number'] }} {{ $row['invoice_no'] }} {{ $row['customer_name'] }} {{ $row['branch_name'] }} {{ $row['product_code'] }} {{ $row['product_name'] }} {{ number_format($row['quantity'], 2) }} {{ number_format($row['rate'], 2) }} {{ number_format($row['amount'], 2) }}
No sales found for selected date range
Total: {{ number_format($totalQty, 2) }} {{ number_format($totalAmount, 2) }}
@endsection