Where can you easily hook on validation in Laravel 5.x?

Technology CommunityCategory: LaravelWhere can you easily hook on validation in Laravel 5.x?
VietMX Staff asked 3 years ago

By default Laravel’s base controller class uses a ValidatesRequests trait which provides a convenient method to validate all incoming HTTP requests coming from client. You can also validate data in laravel by creating Form Request.