Skip to content

Instantly share code, notes, and snippets.

@Joel-James
Last active February 1, 2016 19:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Joel-James/55f48c29bfc69a5573c7 to your computer and use it in GitHub Desktop.
Save Joel-James/55f48c29bfc69a5573c7 to your computer and use it in GitHub Desktop.
Laravel Username Validation
<?php
// Running validation
$this->validate($request, [
'user_id' => 'required|integer|unique:users,user_id'
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment