Rudie Dirkx
Rudie Dirkx
I have no idea how to do this, but would it be possible to auto-run a warrior when its Player.js (or other files?) change? Something like warriorjs --directory warriorjs/antalia-baby-steps/ --watch...
This is probably too invasive, and maybe still broken, but it's a way to always get an empty model, even if you don't set `empty_model`. Because currently the parent's model...
`empty_model` only works for Eloquent models, but it's also useful for an array of data. In GET that's used for the `prototype` and `empty_row` children. In POST it's used as...
My form simplified: ```` // Prepare subform $taco_test = $this->formBuilder->plain(); $taco_test->add('professions', 'choice', [ 'label' => trans('report.taco_test.professions'), 'choices' => $favorites_options, 'multiple' => TRUE, 'expanded' => TRUE, ]); // Add subform to...
1. A collection of 3 models 2. A form with a 'collection' type, where 'data' is the collection of models 3. A plain form in that collection type, with 2...
``` class Form public function rebuildForm() { // If form is plain, ..... if (get_class($this) === 'Kris\LaravelFormBuilder\Form') { ``` That's not right. The plain form class is configurable, kinda: ```...