Bruno Beghelli
Results
2
issues of
Bruno Beghelli
First of all, nice plugin, congratulations. :) I'm working with this package in a Laravel system, and I'm using npm to manage my JS and CSS dependencies. I installed jquery-bootgrid...
I've created a form class, added two fields (text and checkbox) ``` public function buildForm() { $this->setFormOption('class', 'form'); $this ->add('name', 'text', [ 'rules' => 'required|min:5' ]) ->add('publish', 'checkbox'); } ```...