bootforms
bootforms copied to clipboard
Rapid form generation with Bootstrap 3 and Laravel.
Hi all, I've updated and started to maintain a fork of this package. You can take a look at: [glhd/bootforms](https://packagist.org/packages/galahad/bootforms) It's been updated for Laravel 5.6 and also has a...
add phpdoc for the methods, so with the barryvdh/laravel-ide-helper there is autocompletion with IDEs like PhpStorm
Hi, This is a pretty nifty form builder I am using on a couple of my projects, so I thought why not update it to: - Support provider & facade...
Is it possible to generate "on the fly" field attributes in blade? In dependence of some conditions I need for example make checkbox disabled/enabled or checked/unchecked etc.
Does anybody knows a alternative package or has started a maintained fork?
I have this code: ``{!! BootForm::select( trans('project.client'), "client_id")->options($clients->mapForSelectForm())->select($project->client ? $project->client->getRouteKey() : null) !!} `` Is it possible to add extra attribute to each option?
I use Bootform::openHorizontal with an array with my columnSizes and it is applied to all form-groups I add to the form. On some fields I have a relatively long title...
I have a code in laravel blade like this, `{!! BootForm::select('Periode :', 'periode_id', $daftarPeriode)->select(session('periode_id'))->addClass('sipmonev-sesi')->data('action', url('sesi/set/periode'))->placeholder('Pilih Periode') !!}` but the just show up in my html page.
I'm using ckeditor and server side validation. After validation value of the ckeditor is loss. However there is no problem for normal fields.