lukzgois / request
Extend Laravel 5's request.
Installs: 5 595
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 1
Open Issues: 1
Requires
- php: >=5.4.0
- illuminate/support: ~5.0
Requires (Dev)
- phpspec/phpspec: ~2.1
This package is not auto-updated.
Last update: 2024-10-26 16:59:27 UTC
README
Package that exteds the Laravel 5 FormRequest class to easily create custom validation rules.
Quick start
Required setup
In the require
key of composer.json
file add the following
"lukzgois/request": "dev-master"
Run the Composer update comand
$ composer update
How to use
Make your request extends the Lukzgois\Request\Request
class.
use Lukzgois\Request\Request; class MyRequest extends Request {
Create your rules function with your custom rule:
public function rules() { return [ 'my-rule' => 'custom' ]; }
Create a function with the format validate<your_custom_rule>
, like this:
public function validateCustom($attribute, $value, $params) { return $value == 'custom'; }
Do not forget to put a message for this new rule. It can be in the messages
function of the request or in the validation
of the lang files.
public fucnction messages() { return [ 'custom' => 'My custom message' ]; }
And that is it HAHA! :) Please enjoy!