laravel-validator icon indicating copy to clipboard operation
laravel-validator copied to clipboard

Laravel Validation Service

Results 26 laravel-validator issues
Sort by recently updated
recently updated
newest added

Do you intend to release an update to 5.2?

I am using repository pattern using [L5-repository validation](https://github.com/andersao/l5-repository#validators). This is my ## controller ```

After calling the "passes" method to validate data, calling the `errors()` method triggers a fatal error by attempting to invoke the `all()` method on an array. My example code ```...

I use laravel validator with l5 repository and ran in to 2 problems: 1. I cant use unique as a rule. 'I get presence verifier has not been set' 2....

It's nice to have separate create and update use cases, but i was thinking it would be way better to add the possibility to customize them. To give you an...

something like: ``` $v->sometimes('reason', 'required|max:500', function($input) { return $input->games >= 100; }); ```