plokko/formidable is a Laravel package for vue.js form generator for laravel.
It currently has 0 GitHub stars and 9 downloads on Packagist (latest version 0.0.1-alpha).
Install it with composer require plokko/formidable.
Discover more Laravel packages by plokko
or browse all Laravel packages to compare alternatives.
Last updated
A Laravel Vue.js form builder
Install via composer
composer require plokko/formidable
If you use Laravel <5.5 you need to manually register the provider and facade
Add service provider to config/app.php in providers section
Plokko\Formidable\ServiceProvider::class,
Register package facade in config/app.php in aliases section
Plokko\Formidable\Facades\Formidable::class,
php artisan vendor:publish --provider="Plokko\Formidable\ServiceProvider" --tag="config"
Formidable is composed of a Vuejs library and a php helper to help you build the field configuration
...
###PHP helper
$fields =Formidable::fields();