Laravel-Model-Validation icon indicating copy to clipboard operation
Laravel-Model-Validation copied to clipboard

This Laravel package auto-validates a model on save.

Results 21 Laravel-Model-Validation issues
Sort by recently updated
recently updated
newest added

Ran into a compatability issue when using this package along with [eloquent-sluggable](https://github.com/cviebrock/eloquent-sluggable). This change allows other event listeners to fire when validation is successful.

Sorry, am new to Laravel and don't know where best to ask... I would expect a model to have validation rules and to perform validation on save as in this...

Is there planned an update for L5 compatibility?

Caching a collection of models which extend from Way\Database\Model produces the following exception: `Serialization of 'Closure' is not allowed` This closure seems to be included in the validator factory instance....

With this method, let's say you fill a update some fields on an entry, then call the `save()` method, the validation will run on all the fields currently set on...

Restoring records while using `unique` will validate against the same values, because restore triggers a `save` event, and hence throw the validation exception. You will either have to unset the...

Ive run into a situation where I would like to validate a field such as Credit Card Expiration and CVV, but I do not want to save the data in...

Within my controller's update function, I run some code to save any updated fields to the database. My password has the following validation `required|between:8,20` If the password field has not...

i used your validation library . its nice and helped a lot to me . but now i am getting one issue . i need to show the error messages...