PHPackages                             vasilgerginski/filament-landing-pages - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. vasilgerginski/filament-landing-pages

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

vasilgerginski/filament-landing-pages
=====================================

A Filament plugin for creating and managing landing pages with lead tracking

v0.3.0(5mo ago)226MITPHPPHP ^8.2CI failing

Since Dec 15Pushed 5mo agoCompare

[ Source](https://github.com/vasilGerginski/filament-landing-pages)[ Packagist](https://packagist.org/packages/vasilgerginski/filament-landing-pages)[ Docs](https://github.com/vasilgerginski/filament-landing-pages)[ RSS](/packages/vasilgerginski-filament-landing-pages/feed)WikiDiscussions main Synced today

READMEChangelog (1)Dependencies (14)Versions (5)Used By (0)

Filament Landing Pages
======================

[](#filament-landing-pages)

A Filament plugin for creating and managing landing pages with lead tracking.

Features
--------

[](#features)

- Visual section builder with drag-and-drop reordering
- Pre-built landing page templates (Lead Generation, Sales, Event, Newsletter, etc.)
- Lead capture forms with email verification
- SEO metadata management
- Analytics and UTM tracking support
- Fully customizable blocks and templates

Requirements
------------

[](#requirements)

- PHP 8.2+
- Laravel 10, 11, or 12
- Filament 3.2+ or 4.0+
- Livewire 3

Installation
------------

[](#installation)

```
composer require vasilgerginski/filament-landing-pages
```

Run the install command:

```
php artisan filament-landing-pages:install
```

This will publish the config file and migrations. Then run:

```
php artisan migrate
```

Usage
-----

[](#usage)

Register the plugin in your Filament panel provider:

```
use VasilGerginski\FilamentLandingPages\FilamentLandingPagesPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        // ...
        ->plugin(FilamentLandingPagesPlugin::make());
}
```

### Configuration Options

[](#configuration-options)

```
FilamentLandingPagesPlugin::make()
    ->landingPages(true)      // Enable/disable landing pages resource
    ->leads(true)             // Enable/disable leads resource
    ->navigationGroup('Marketing')
    ->navigationIcon('heroicon-o-rectangle-stack')
    ->navigationSort(3)
```

Available Blocks
----------------

[](#available-blocks)

### Core Blocks

[](#core-blocks)

- Hero Section
- Challenges Section
- Solution Section
- Icon List Section
- Testimonials Section
- FAQ Section
- CTA Section
- Trust Indicators Section

### Goal-Specific Blocks

[](#goal-specific-blocks)

- Lead Form
- Newsletter Signup
- Event Registration
- Product Showcase
- Pricing Table
- Countdown Timer

Custom Blocks
-------------

[](#custom-blocks)

Create a custom block class:

```
namespace App\Filament\Blocks;

use Filament\Forms\Components\Builder\Block;
use Filament\Forms\Components\TextInput;

class MyCustomBlock
{
    public static function make(): Block
    {
        return Block::make('my_custom_block')
            ->label('My Custom Block')
            ->schema([
                TextInput::make('title')->required(),
            ]);
    }
}
```

Register in config:

```
// config/filament-landing-pages.php
'blocks' => [
    'custom_blocks' => [
        'my_custom_block' => \App\Filament\Blocks\MyCustomBlock::class,
    ],
],
```

Create a corresponding Livewire component and Blade view for frontend rendering.

Custom Templates
----------------

[](#custom-templates)

Extend `AbstractTemplate`:

```
namespace App\LandingPageTemplates;

use VasilGerginski\FilamentLandingPages\Templates\AbstractTemplate;

class MyTemplate extends AbstractTemplate
{
    public function getName(): string
    {
        return 'My Template';
    }

    public function getSections(): array
    {
        return [
            [
                'type' => 'hero_section',
                'data' => [
                    'title' => 'Welcome',
                    'subtitle' => 'Your subtitle here',
                ],
            ],
            // Add more sections...
        ];
    }
}
```

Register in config:

```
'templates' => [
    'custom_templates' => [
        'my_template' => \App\LandingPageTemplates\MyTemplate::class,
    ],
],
```

Custom Models
-------------

[](#custom-models)

Override the default models:

```
// config/filament-landing-pages.php
'models' => [
    'landing_page' => \App\Models\LandingPage::class,
    'lead' => \App\Models\Lead::class,
],
```

Routes
------

[](#routes)

Landing pages are accessible at:

- Public: `/{prefix}/{slug}` (default prefix: `landing`)
- Preview: `/{prefix}-preview/{slug}`

Configure in `config/filament-landing-pages.php`:

```
'routes' => [
    'prefix' => 'landing',
    'middleware' => ['web'],
    'locale_prefix' => false,  // Set true for /{locale}/landing/{slug}
],
```

SEO Integration
---------------

[](#seo-integration)

The package supports optional integration with [artesaos/seotools](https://github.com/artesaos/seotools):

```
// config/filament-landing-pages.php
'seo' => [
    'enabled' => true,
    'seo_tools_facade' => \Artesaos\SEOTools\Facades\SEOTools::class,
],
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

See [CHANGELOG.md](CHANGELOG.md) for recent changes.

License
-------

[](#license)

MIT License. See [LICENSE](LICENSE) for details.

###  Health Score

34

—

LowBetter than 75% of packages

Maintenance72

Regular maintenance activity

Popularity9

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~14 days

Total

4

Last Release

156d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/15899179?v=4)[Vasil Nedelchev](/maintainers/vaseto)[@vaseto](https://github.com/vaseto)

---

Top Contributors

[![vasilGerginski](https://avatars.githubusercontent.com/u/1145019?v=4)](https://github.com/vasilGerginski "vasilGerginski (17 commits)")

---

Tags

laravellivewiremarketinglead generationlanding pagesfilament

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/vasilgerginski-filament-landing-pages/health.svg)

```
[![Health](https://phpackages.com/badges/vasilgerginski-filament-landing-pages/health.svg)](https://phpackages.com/packages/vasilgerginski-filament-landing-pages)
```

###  Alternatives

[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17760.2k3](/packages/stephenjude-filament-jetstream)[codewithdennis/filament-select-tree

The multi-level select field enables you to make single selections from a predefined list of options that are organized into multiple levels or depths.

329530.5k29](/packages/codewithdennis-filament-select-tree)[stephenjude/filament-debugger

About

104162.2k2](/packages/stephenjude-filament-debugger)[finity-labs/fin-mail

A powerful email template manager and composer for Filament with dynamic token replacement, template versioning, and inline email sending.

284.5k1](/packages/finity-labs-fin-mail)[tapp/filament-form-builder

User facing form builder using Filament components

132.4k3](/packages/tapp-filament-form-builder)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
