uni-deal / filament-relationship-builder
Registers a FilamentPHP builder via an Eloquent relationship with order, type, and data columns.
v1.0
2025-03-16 21:05 UTC
Requires
- filament/forms: ^v3.3.4
- illuminate/database: ^10.0 || ^11.0 || ^12.0
README
A simple package to register a FilamentPHP builder via an Eloquent relationship with columns: order
, type
, and data
.
Installation
To install this package, you can use Composer directly from the GitHub repository.
Run the following command in your terminal:
composer require uni-deal/filament-relationship-builder
Once installed, you can start using the RelationshipBuilder
component as shown in the example above.
Example Usage
use UniDeal\FilamentRelationshipBuilder\Components\RelationshipBuilder; RelationshipBuilder::make('blocks') ->relationship() ->blocks([ Forms\Components\Builder\Block::make('Heading')->schema([ Forms\Components\TextInput::make('content') ]) ]),
Model Requirements
The targeted model must contain a cast on the data
column of type array:
class Block extends \Illuminate\Database\Eloquent\Model { // Before Laravel 11 protected $casts = [ 'data' => 'array', ]; // For Laravel 11+ protected function casts(): array { return [ 'data' => 'array', ]; } }
Register the blocks
relation on the initial model:
class Post extends \Illuminate\Database\Eloquent\Model { public function blocks() { return $this->hasMany(Block::class); } }