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(3mo ago)226MITPHPPHP ^8.2CI failing

Since Dec 15Pushed 3mo 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 1mo ago

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

36

—

LowBetter than 82% of packages

Maintenance80

Actively maintained with recent releases

Popularity10

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity40

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

104d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/0be02f5ebcee3474f2ebcb4afb2bbb51a9b08296438be35adda5361d5eacafb4?d=identicon)[vaseto](/maintainers/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

[pboivin/filament-peek

Full-screen page preview modal for Filament

253319.6k12](/packages/pboivin-filament-peek)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

124139.3k2](/packages/dotswan-filament-map-picker)[creagia/filament-code-field

A Filamentphp input field to edit or view code data.

58289.3k3](/packages/creagia-filament-code-field)[swisnl/filament-backgrounds

Beautiful backgrounds for Filament auth pages

54149.2k6](/packages/swisnl-filament-backgrounds)[tapp/filament-google-autocomplete-field

Filament plugin that provides a Google Autocomplete field

3098.1k](/packages/tapp-filament-google-autocomplete-field)[asosick/filament-layout-manager

Allow users to create &amp; customize their own FilamentPHP pages composed of Livewire components

5718.8k2](/packages/asosick-filament-layout-manager)

PHPackages © 2026

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