ukeloop

Results 11 comments of ukeloop

`join` is an alias of `implode`. However, aliases are not a recommended function because they are for backward compatibility and may be obsolete. This PR is for refactoring codes. it...

I had missed out on that PR. Thanks for letting me know. However, I think this problem applies to all options of type list, such as `choice`. I'm just as...

Do you think we should always not include `template_prefix` in `Templates`? If `Templates` has `template_prefix`, it's duplicated.

I would like to change the view file as well for each Theme. ```php return [ 'themes' => [ 'default' => [ // ... 'template_prefix' => 'laravel-form-builder::', ], 'foo' =>...

So it is not PR, it's issue. If it is difficult to change only class, as in the case of Horizontal form, it is necessary to change view files. I...

But Symfony form can change view files by theme.

It's hard to prepare the original parser. Do you have a good idea?

Currently, this library only supports displaying errors on redirects. If you want to redirect with separate management data, it's easy. ```php $data = [ 'username' => '', ]; $form =...

Model data is used only if the value property (`value` or `selected`) is `NULL`. You can use `default_value`. ```php $this ->add('active', 'choice', [ 'choices' => ['yes' => 'Yes', 'no' =>...