Rudie Dirkx
Rudie Dirkx
LOL what a complainer #324 :D
Don't use `entity`, but `select`, and create the options/`choices` with `pluck` + attribute getter.
That's not used in `getFieldValues()`. That's only for building the form, not for getting the values during submission.
You can do that in your view, using the global form functions like `form_start`, `form_row`, etc. See [helpers.php](https://github.com/kristijanhusak/laravel-form-builder/blob/master/src/helpers.php). There are several other issues where we decided not to create a...
Mainly #582
I missed those too. `json_encode()` only includes public properties, so not `Address`'s. I can't image Symfony will implement `JsonSerializable` for this, so this package should do something. Can't be too...
I finally did something, yay.
I was afraid you'd say that =) I'll give it a shot, but there's a lot of package interfaces that have to remain BC, so it's not easy. The RFC822-HEADERS...
I mean the screen, not the window. So probably `screen.width`, not `window.innerWidth`. I can't find anything in `window` or `screen` larger than `screen.width`, so maybe it's not detectable.
I agree. And that's also how I use it, but not how I made it. I'll give that a shot. I'm not sure I understand the `$tokens` magic well enough...