happydemon / laravel-parsley
There is no license information available for the latest version (0.4.1) of this package.
Converts FormRequest rules to Parsley rules
0.4.1
2015-07-02 09:52 UTC
Requires
- php: >=5.4.0
- illuminate/support: ~5.0
- illuminate/translation: ~5.0
- laravelcollective/html: ~5.0
Replaces
- idma/laravel-parsley: 0.*
README
Converts FormRequest rules to Parsley rules.
Install
If you have previously set up LaravelCollective/Html
or Illuminate/Html
you can remove its service provider from app/config
in app/config
add the following under service providers:
HappyDemon\LaravelParsley\LaravelParsleyServiceProvider
If you haven't already, add these facades:
'Form' => 'Collective\Html\FormFacade',
'Html' => 'Collective\Html\HtmlFacade',
Useage
All that's needed is for you to supply the name of the FormRequest
in the request
key when opening a form.
Form::open(['request' => 'YourFormRequestClass'])
Form::model(['request' => 'YourFormRequestClass'])
Lastly you should include parsley's scripts on the page and activate parsley for your form.
easy enough don't you think?