Skip to content

Instantly share code, notes, and snippets.

@yasaryousuf
Created March 12, 2018 09:08
Show Gist options
  • Save yasaryousuf/68674be99e9c4306bbba7b7431237d2b to your computer and use it in GitHub Desktop.
Save yasaryousuf/68674be99e9c4306bbba7b7431237d2b to your computer and use it in GitHub Desktop.
laravel-validation
public function userValidation($request)
{
$request->validate([
'first_name' => 'required|max:25',
'last_name' => 'required|max:25',
'email' => 'required|max:50',
'user_image_url' => 'image|mimes:jpeg,png,jpg,gif,svg|max:1000'
]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment