Skip to content

Instantly share code, notes, and snippets.

@ahmetanbar
Created March 22, 2020 00:32
Show Gist options
  • Save ahmetanbar/0e1950324058041d767518476df893d5 to your computer and use it in GitHub Desktop.
Save ahmetanbar/0e1950324058041d767518476df893d5 to your computer and use it in GitHub Desktop.
Laravel Passport login by using username or email
public function findForPassport($identifier) {
return $this->orWhere('email', $identifier)->orWhere('username', $identifier)->first();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment