@extends(BaseHelper::getAdminMasterLayoutTemplate()) @section('content') @php use Carbon\Carbon; @endphp

Items Sales Report

{{ $startDate && $endDate ? trans('plugins/ecommerce::reports.date_range_format_value', [ 'from' => BaseHelper::formatDate($startDate), 'to' => BaseHelper::formatDate($endDate), ]) : trans('plugins/ecommerce::reports.date_range_format_value', [ 'from' => BaseHelper::formatDate(Carbon::now()->startOfMonth()), 'to' => BaseHelper::formatDate(Carbon::now()->endOfMonth()), ]) }}
{{--
--}}
Top 10 Selling Items
Top 10 Selling Items
@if(!empty($chartData['topProducts'])) @foreach($chartData['topProducts'] as $product) @endforeach @endif
Item Name Quantity Percentage
{{ Str::limit($product['name'], 28) }} {{ $product['total_qty'] }} {{ $product['percentage'] }}%
Product Name Brand Size Load Rating Pattern Qty Cost Total Amount Tax Profit Action
TOTALS:
@endsection @push('footer') @endpush