plokko / formidable
Vue.js form generator for Laravel
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/plokko/formidable
Requires
- php: >=7.0
This package is auto-updated.
Last update: 2025-10-18 04:11:54 UTC
README
A Laravel Vue.js form builder
Installation
Install via composer
composer require plokko/formidable
Register Service Provider
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,
Publish Configuration File
php artisan vendor:publish --provider="Plokko\Formidable\ServiceProvider" --tag="config"
Usage
Formidable is composed of a Vuejs library and a php helper to help you build the field configuration
Javascript
...
###PHP helper
$fields =Formidable::fields();