@extends('admin.layouts.app') @section('title', 'Landing Pages') @section('content')

Landing Pages

Create custom landing pages for marketing campaigns

@forelse($landingPages as $page) @empty @endforelse
Title URL Products Status Actions
@if($page->hero_image) @else
@endif {{ $page->title }}
/lp/{{ $page->slug }} {{ count($page->products_array ?? []) }} products @if($page->status) Active @else Draft @endif
@if($page->status) @endif
@csrf @method('DELETE')

No landing pages found

Create your first landing page
@if($landingPages->hasPages())
{{ $landingPages->links() }}
@endif
@endsection