You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I've been playing around with this awesome package and it does a wonderful job.
I are trying to use this to act like a "Page builder" for simple frontend website.
I want to create column options for the page block, and tried this simple approach, basically to provide PageBuilder itself in the schema. However it goes to infinite loop and throws this error.
Xdebug has detected a possible infinite loop, and aborted your script with a stack depth of '512' frames
Anyway to get this issue resolved ? Or maybe another approach to manage the column option.
Here's the code
public static function getBlockSchema(): Block
{
return Block::make('two-column')
->columns(2)
->schema([
PageBuilder::make('block1')->label(__('filament-fabricator::page-resource.labels.blocks')),
PageBuilder::make('block2')->label(__('filament-fabricator::page-resource.labels.blocks')),
]);
}
The text was updated successfully, but these errors were encountered:
Hello,
I've been playing around with this awesome package and it does a wonderful job.
I are trying to use this to act like a "Page builder" for simple frontend website.
I want to create column options for the page block, and tried this simple approach, basically to provide PageBuilder itself in the schema. However it goes to infinite loop and throws this error.
Xdebug has detected a possible infinite loop, and aborted your script with a stack depth of '512' frames
Anyway to get this issue resolved ? Or maybe another approach to manage the column option.
Here's the code
The text was updated successfully, but these errors were encountered: