Order Item Report

AR Dropshipping - Sales Analysis

Generated On: {{ now()->format('d M, Y - h:i A') }}

Total Products: {{ count($data) }}

Total Quantity Sold: {{ $data->sum('sales_qty') }}

@if(count($data) > 0) @foreach($data as $index => $item) @endforeach
# Product Name Sales Quantity
{{ $index + 1 }} {{ $item->product_title ?? 'N/A' }} {{ number_format($item->sales_qty ?? 0) }}
TOTAL QUANTITY SOLD: {{ number_format($data->sum('sales_qty')) }}
@else

No data available to display. Please apply filters and try again.

@endif