@extends('layouts.admin') @section('title', 'Landing Pages') @section('admin')
@include('admin._nav')

Landing Pages

Slug-addressable lead-capture pages that auto-tag new subscribers.

New Landing Page
{{-- AI Generate modal --}}
@csrf

Generate landing page

Claude drafts headline, body, and CTA from your brief

/lp/
@if(session('success'))
{{ session('success') }}
@endif @if($pages->isEmpty())

No landing pages yet.

Create one to capture leads and auto-tag subscribers.

@else
@foreach($pages as $p) @php $rate = $p->view_count > 0 ? ($p->conversion_count / $p->view_count) * 100 : 0; @endphp
@if($p->status === 'published') Live @else Draft @endif /lp/{{ $p->slug }}

{{ $p->title }}

{{ $p->headline }}

Views
{{ number_format($p->view_count) }}
Signups
{{ number_format($p->conversion_count) }}
Rate
{{ number_format($rate, 1) }}%
@if(!empty($p->tag_slugs))
@foreach($p->tag_slugs as $t) #{{ $t }} @endforeach
@endif
Edit @if($p->status === 'published') View
@csrf
@else
@csrf
@endif
@csrf @method('DELETE')
@endforeach
@endif
@endsection