Laravel Passport Connexion avec le nom d'utilisateur
// Add this function to User model
/**
* @param $identifier
* @return Model|Builder|null
*/
public function findForPassport($identifier): Model|Builder|null
{
return $this->newQuery()->where('username', $identifier)->first();
}
Long Lizard