Skip to content

Instantly share code, notes, and snippets.

@Joel-James
Last active September 12, 2019 05:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Joel-James/30ba16746f21fe1ab6ee to your computer and use it in GitHub Desktop.
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/
<?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