Your Landing Pages

@if($landingPages->isEmpty())

No landing pages

Get started by creating a new landing page.

@else
@foreach($landingPages as $page) @endforeach
Title Status Created Visits Conversions Rate Actions
{{ $page->title }}
{{ route('agent.landing-page.show', $page->slug) }}
{{ $page->is_active ? 'Active' : 'Inactive' }} {{ $page->created_at->format('M d, Y') }} {{ $page->visits_count }} {{ $page->conversions_count }} {{ $page->visits_count > 0 ? round(($page->conversions_count / $page->visits_count) * 100, 1) : 0 }}%
@csrf @method('DELETE')
{{ $landingPages->links() }}
@endif