09/02
2018
Vue.js form generator for Laravel
A Laravel Vue.js form builder, (*2)
Install via composer, (*3)
composer require plokko/formidable
If you use Laravel <5.5 you need to manually register the provider and facade, (*4)
Add service provider to config/app.php
in providers
section, (*5)
Plokko\Formidable\ServiceProvider::class,
Register package facade in config/app.php
in aliases
section, (*6)
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, (*7)
..., (*8)
$fields =Formidable::fields();