@extends('admin.layouts.app') @section('title', 'Item Wise Sales Report') @section('page_title', 'Item Wise Sales Report') @section('content')
| 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) }} | |||||||