variety of premium plugins

Learn More

bolt

you are reading the documentation for version v3
to check your version use: composer show lara-zeus/bolt

Use Custom Schemata

the trait Schemata is the heart of the form builder, and now you can customize it to your liking.

Note
This is an advanced feature; please use it only when necessary since you have to mainline it manually with every update for Bolt.

First, copy the trait to your app:

copy the trait from \LaraZeus\Bolt\Concerns to your app, let say: \App\Zeus\Bolt\Concerns

call the trait in a service provider

in your register method of your AppServiceProvider add the following:

\LaraZeus\Bolt\Livewire\FillForms::getBoltFormDesignerUsing(\App\Zeus\Bolt\Concerns\Designer::class);

You're done. Customize the form builder to fit your needs. Remember to keep an eye on any changes in future updates so that you will avoid breaking changes.