Théo Benoit
Théo Benoit
I added a failing tests that I couldn't fix for now
Hi, I have made this structure with unit tests : ```php $builder = new FieldsBuilder('Banner'); $builder ->addGroup('group') ->addTab('tab') ->addAccordion('accordion') ->addWysiwyg('content') ->addAccordion('accordion_endpoint'); $builder ->modifyField('group->tab_tab->accordion_accordion', function ($builder) { $builder->addText('sub_title'); return $builder; });...
`FieldBuilder` is missing a getter for the private property `type`
Hello, I came with an idea, maybe it could be great to have something like that : ```php ->addText('start_time', [ 'required' => true, 'placeholder' => '00:00:00', 'regex' => '/^(((([0-1][0-9])|(2[0-3])):?[0-5][0-9]:?[0-5][0-9]+$))/' ])...
You can now have for Example Structure Options page like that : - Top - Children 1 Children 1 class can have : public $parent = Top::class;
Added `null` to helpers `getPermissionsTeamId` and `setPermissionsTeamId` and in the `PermissionRegistrar`. This is to fix a PHPStan problem : `Parameter #1 $id of function setPermissionsTeamId expects Illuminate\Database\Eloquent\Model|int|string, null given.` But...
II was wondering if it would be a good idea to add the exception handler of Laravel, it is nicer than the one of Symfony. Roots Acorn managed to implement...
It would be nice if the` PostType::query()` replicate the https://timber.github.io/docs/reference/timber-postquery/#pagination With `Timber` we can do something like this : ```php $posts = new PostQuery(); // Pagination object $posts->pagination(); ``` But,...
Add parameters to the helpers functions, so the developer can know what is going on when using an IDE
(Thanks for sending a pull request! Please make sure you read the contribution guidelines, then fill out the blanks below.) What does this implement/fix? Explain your changes. --------------------------------------------------- This fix...