dwightwatson / validating

Automatically validating Eloquent models for Laravel
MIT License
968 stars 76 forks source link

laravel 5.5 #192

Closed dwenaus closed 6 years ago

dwenaus commented 6 years ago

is this package required now that validation has native support in laravel 5.5?

dwightwatson commented 6 years ago

Validation has been in Laravel for as long as I can remember.

Form request validation came in Laravel 5.0 from memory.

This library is for self validating models - models that can only be saved if they are considered valid - very Rails-esque. Otherwise generally with Laravel you will be validating your request input instead. Pick the approach that works better for you.