musonza / laravel-forms
v0.1.7
2019-06-16 22:36 UTC
Requires
- guzzlehttp/guzzle: ~6.0
- laravel/framework: ~5.5.0|~5.6.0|~5.7.0|~5.8.0
- league/fractal: ^0.17.0
Requires (Dev)
- mockery/mockery: ^1.0.0
- orchestra/database: ~3.3.0|~3.4.2|^3.5.0|~3.7.0
- orchestra/testbench: ~3.3.0|~3.4.2|^3.5.0|~3.7.0
- orchestra/testbench-dusk: ^3.7@dev
- phpunit/phpunit: ^5.7|6.2|^7.0
- spatie/phpunit-watcher: dev-master
- dev-master
- v0.1.7
- v0.1.6
- v0.1.5
- v0.1.4
- v0.1.3
- v0.1.2
- v0.1.1
- v0.1.0
- dev-dependabot/npm_and_yarn/minimist-and-mkdirp-and-loader-fs-cache-1.2.8
- dev-dependabot/npm_and_yarn/bootstrap-4.3.1
- dev-dependabot/npm_and_yarn/express-4.18.2
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/loader-utils-and-vue/cli-service-1.4.2
- dev-dependabot/npm_and_yarn/minimatch-3.0.8
- dev-dependabot/npm_and_yarn/css-what-2.1.3
- dev-dependabot/npm_and_yarn/moment-timezone-0.5.35
- dev-dependabot/npm_and_yarn/moment-2.29.4
- dev-dependabot/npm_and_yarn/shell-quote-1.7.3
- dev-dependabot/npm_and_yarn/url-parse-1.5.10
- dev-dependabot/npm_and_yarn/follow-redirects-1.14.8
- dev-dependabot/npm_and_yarn/chownr-1.1.4
- dev-dependabot/npm_and_yarn/node-sass-4.14.1
- dev-dependabot/npm_and_yarn/tar-2.2.2
- dev-dependabot/npm_and_yarn/ws-6.2.2
- dev-dependabot/npm_and_yarn/axios-0.21.2
- dev-dependabot/npm_and_yarn/path-parse-1.0.7
- dev-dependabot/npm_and_yarn/dns-packet-1.3.4
- dev-dependabot/npm_and_yarn/highlight.js-10.4.1
- dev-minor-fixes
This package is auto-updated.
Last update: 2024-10-30 01:39:25 UTC
README
Installation
-
Install composer package
composer require musonza/laravel-forms
-
Publish Assets
php artisan vendor:publish
-
Add Form facade to
config/app.php
'Form' => Musonza\Form\Facades\FormFacade::class,
-
Run migrations
php artisan migrate
-
Check the published file config/laravel_forms.php
- You can enable / disable captcha
- You can configure the path for your forms dashboard
- You can add custom field types
-
Access dashboard at
http//your-url.com/laravel-forms (you can change the path in config/laravel_forms.php)
Adding a Form
Form details
Adding a Field
Field details
Sample Form Output
Sample Submission
TODO
- Multi page forms
Credits
https://github.com/laravel/telescope for some of the front-end structuring