{{ __('Best Selling Products') }}

Date range wise product sales report

Reset

Selected Range

{{ \Carbon\Carbon::parse($from_date)->format('d M, Y') }} - {{ \Carbon\Carbon::parse($to_date)->format('d M, Y') }}

Total Products

{{ $bestSellingProducts->count() }}

Total Amount

৳{{ number_format($bestSellingProducts->sum('total_amount'), 2) }}

@if($orderCount == 0)
No orders found for selected date range.
@endif
@forelse ($bestSellingProducts as $index => $product) @empty @endforelse @if ($bestSellingProducts->count() > 0) @endif
# Product Name Sell Qty Amount (৳)
{{ $index + 1 }} {{ $product->product_name }} {{ number_format($product->total_qty, 0) }} ৳{{ number_format($product->total_amount, 2) }}

No products sold in this date range

Total: {{ number_format($bestSellingProducts->sum('total_qty'), 0) }} ৳{{ number_format($bestSellingProducts->sum('total_amount'), 2) }}