Skip to content

Instantly share code, notes, and snippets.

@lloy0076
Created March 24, 2017 14:02
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 lloy0076/f74461c41b2b0167705335e945c79225 to your computer and use it in GitHub Desktop.
Save lloy0076/f74461c41b2b0167705335e945c79225 to your computer and use it in GitHub Desktop.
Rule Validate
```
public function rules()
{
// I've only done the 'email' rule because I'm lazy!
return [
'email' => [
'required', 'email', 'max:255', Rule::unique->ignore($this->id),
],
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment