{{ __('Marketing Dashboard') }}

Total Clicks

{{ number_format($totalClicks) }}

Total Conversions

{{ number_format($totalConversions) }}

Conversion Rate

{{ $conversionRate }}%

Marketing Performance

Your Landing Pages

View All →
@if($landingPages->isEmpty())

No landing pages

Get started by creating a new landing page.

@else
@foreach($landingPages->take(5) as $page) @endforeach
Title Status Visits Conversions Rate Actions
{{ $page->title }}
{{ route('agent.landing-page.show', $page->slug) }}
{{ $page->is_active ? 'Active' : 'Inactive' }} {{ $page->visits_count }} {{ $page->conversions_count }} {{ $page->visits_count > 0 ? round(($page->conversions_count / $page->visits_count) * 100, 1) : 0 }}% Edit View
@endif