Configuration
Publish the config file:
php artisan vendor:publish --tag=tall-form-config
Aliases
The config file contains aliases for easy access when you use Headless fields
//Register Aliases for easy access in blade files.
//Remove or replace the Aliases.
'aliases' => [
'Checkbox' => \Tanthammar\TallForms\Checkbox::class,
//...
],
Components
All field types except SpatieTags
has a corresponding Blade component class.
You can extend them or replace them with your own, BUT you must keep the tall
prefix.
'components' => [
'form' => \Tanthammar\TallForms\Components\Form::class,
//...
],
Last updated
Was this helpful?