PHPackages                             martin-ro/filament-page-blocks - 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. [Admin Panels](/categories/admin)
4. /
5. martin-ro/filament-page-blocks

AbandonedArchivedLibrary[Admin Panels](/categories/admin)

martin-ro/filament-page-blocks
==============================

Block-Based Page Builder Skeleton for Filament Apps

1.0.8(1y ago)1256MITPHPPHP ^8.2

Since Jul 31Pushed 1y ago2 watchersCompare

[ Source](https://github.com/martin-ro/filament-page-blocks)[ Packagist](https://packagist.org/packages/martin-ro/filament-page-blocks)[ Docs](https://github.com/martin-ro/filament-page-blocks)[ RSS](/packages/martin-ro-filament-page-blocks/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (9)Dependencies (10)Versions (12)Used By (0)

Archived
========

[](#archived)

Filament has introduced previews and editing in modals in the `Builder` component: [filamentphp/filament#12629](https://github.com/filamentphp/filament/pull/12629)

To take advantage of the new features, you can use the simplified [Filament Blocks](https://github.com/martin-ro/filament-blocks) package.

Block-Based Page Builder for Filament
-------------------------------------

[](#block-based-page-builder-for-filament)

This is basically a lightweight version of [Z3d0X's](https://github.com/z3d0x) excellent [Filament Fabricator](https://filamentphp.com/plugins/fabricator) Plugin.

It only provides the blocks functionality without layouts, pages, routing, etc.

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

[](#installation)

You can install this package via composer:

```
composer require martin-ro/filament-page-blocks
```

Documentation
-------------

[](#documentation)

Documentation can be viewed at:

Creating a Page Block
---------------------

[](#creating-a-page-block)

```
php artisan make:filament-page-block MyPageBlock
```

This will create the following Page Block class:

```
use Filament\Forms\Components\Builder\Block;
use MartinRo\FilamentPageBlocks\PageBlock;

class MyBlock extends PageBlock
{
    public static function getBlockSchema(): Block
    {
        return Block::make('my-page-block')
            ->label('My Page Block')
            ->icon('heroicon-o-rectangle-stack')
            ->schema([
                //
            ]);
    }

    public static function mutateData(array $data): array
    {
        return $data;
    }
}
```

and its corresponding blade component view:

```
@props([
    //
])

    //

```

Using Page Blocks in your template
----------------------------------

[](#using-page-blocks-in-your-template)

```

```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Credits
-------

[](#credits)

- [Ziyaan Hassan](https://github.com/Z3d0X)
- [abr4xas](https://github.com/abr4xas)
- [Martin Ro](https://github.com/martin-ro)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance34

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 82.4% 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 ~41 days

Recently: every ~81 days

Total

9

Last Release

686d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/f9dd37cdb7c5679e5d91463b4b5cfded38fbfce46919242560161aa9f95f0166?d=identicon)[martin-ro](/maintainers/martin-ro)

---

Top Contributors

[![martin-ro](https://avatars.githubusercontent.com/u/10107779?v=4)](https://github.com/martin-ro "martin-ro (14 commits)")[![abr4xas](https://avatars.githubusercontent.com/u/405484?v=4)](https://github.com/abr4xas "abr4xas (3 commits)")

---

Tags

laravelmartin-rofilament-page-blocks

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/martin-ro-filament-page-blocks/health.svg)

```
[![Health](https://phpackages.com/badges/martin-ro-filament-page-blocks/health.svg)](https://phpackages.com/packages/martin-ro-filament-page-blocks)
```

###  Alternatives

[guava/filament-knowledge-base

A filament plugin that adds a knowledge base and help to your filament panel(s).

206120.5k1](/packages/guava-filament-knowledge-base)[ralphjsmit/laravel-filament-seo

A package to combine the power of Laravel SEO and Filament Admin.

15398.7k10](/packages/ralphjsmit-laravel-filament-seo)[awcodes/filament-quick-create

Plugin for Filament Admin that adds a dropdown menu to the header to quickly create new items.

246177.6k7](/packages/awcodes-filament-quick-create)[geo-sot/filament-env-editor

Access .env file though Filament admin panel

2432.3k1](/packages/geo-sot-filament-env-editor)[caresome/filament-neobrutalism-theme

A neobrutalism theme for FilamentPHP admin panels

303.2k](/packages/caresome-filament-neobrutalism-theme)[andreia/filament-ui-switcher

Add a modal with options to switch between different UI layouts and styles (colors, fonts, font sizes).

233.8k](/packages/andreia-filament-ui-switcher)

PHPackages © 2026

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