Traffic Reports
{{-- Sync Reports --}}Report Date | Marketplace ID | Impressions (Search Results) | Impressions (Home Page) | Transactions | Unique Transactions | Buyer Views | Total Sales | Buyers | Buy Box Purchases | Listing Views |
---|---|---|---|---|---|---|---|---|---|---|
@if($grouping === 'daily') {{ \Carbon\Carbon::parse($record->formatted_date)->format('d M Y') }} @elseif($grouping === 'weekly') @php // Get the starting and ending date of the week $weekStart = \Carbon\Carbon::parse($record->week_start_date)->startOfWeek()->format('d M Y'); $weekEnd = \Carbon\Carbon::parse($record->week_end_date)->endOfWeek()->format('d M Y'); @endphp {{ $weekStart }} - {{ $weekEnd }} @elseif($grouping === 'monthly') @php // Get the starting and ending date of the month $monthStart = \Carbon\Carbon::parse($record->month_start_date)->startOfMonth()->format('d M Y'); $monthEnd = \Carbon\Carbon::parse($record->month_end_date)->endOfMonth()->format('d M Y'); @endphp {{ $monthStart }} - {{ $monthEnd }} @endif | {{ $record->marketplace_id }} | {{ number_format($record->listing_impression_search_results_page, 2) }} | {{ number_format($record->listing_impression_home_page, 2) }} | {{ number_format($record->transaction, 2) }} | {{ number_format($record->unique_transactions, 2) }} | {{ number_format($record->buyer_views, 2) }} | {{ number_format($record->total_sales, 2) }} | {{ number_format($record->buyers, 2) }} | {{ number_format($record->buy_box_purchases, 2) }} | {{ number_format($record->listing_views, 2) }} |
No data found |