Campaign Repport
{{-- Sync Reports --}}Campaign Name | Report Date | Impressions | Clicks | Cost | Sales | ROAS | ACOS | CPC(Cost Per Click) | CTR(Click-Through Rate) | CPI(Cost Per Impression) | CVR(Conversion Rate) |
---|---|---|---|---|---|---|---|---|---|---|---|
{{ $record->ebayCampaign->campaign_name }} | @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->total_impressions }} | {{ number_format($record->total_clicks, 2) }} | {{ number_format($record->total_cost) }} | {{ number_format($record->total_sales1d) }} | {{ number_format($record->croas, 2) }} | {{ number_format($record->cacos, 2) }} | {{ number_format($record->ccpc, 2) }} | {{ number_format($record->cctr, 2) }} | {{ number_format($record->ccpi, 2) }} | {{ number_format($record->ccvr, 2) }} |
No data found |