martin-ro/filament-page-blocks

Block-Based Page Builder Skeleton for Filament Apps

Downloads

169

Stars

1

Version

1.0.6

Block-Based Page Builder for Filament

This is basically a lightweight version of Z3d0X's excellent Filament Fabricator Plugin.

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

Installation

You can install this package via composer:

composer require martin-ro/filament-page-blocks

Documentation

Documentation can be viewed at: https://filamentphp.com/plugins/fabricator

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:

<div>
    //
</div>

Using Page Blocks in your template

<x-filament-page-blocks::page-blocks :blocks="$page->blocks" />

Changelog

Please see CHANGELOG for more information on what has changed recently.

Credits

License

The MIT License (MIT). Please see License File for more information.

martin-ro

Author

martin-ro