Last active
September 12, 2019 05:58
-
-
Save Joel-James/30ba16746f21fe1ab6ee to your computer and use it in GitHub Desktop.
Laravel Bail Rule - Stop Validation On First Failure - https://duckdev.com/blog/laravel-bail-stopping-on-first-validation-failure/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Running validation | |
$this->validate($request, [ | |
'user_id' => 'bail|required|integer|unique:users,user_id' | |
]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment