ValidatesRequests::validateWithBag()

void validateWithBag(string $errorBag, Request $request, array $rules, array $messages = array(), array $customAttributes = array()) Validate the given request with the given rules. Parameters string $errorBag Request $request array $rules array $messages array $customAttributes Return Value void Exceptions ValidationException

ValidatesRequests::validate()

void validate(Request $request, array $rules, array $messages = array(), array $customAttributes = array()) Validate the given request with the given rules. Parameters Request $request array $rules array $messages array $customAttributes Return Value void

UserTrait::getAuthPassword()

string getAuthPassword() Get the password for the user. Return Value string

UserTrait::getRememberToken()

string getRememberToken() Get the token value for the "remember me" session. Return Value string

UserTrait

UserTrait trait UserTrait (View source) Methods mixed getAuthIdentifier() Get the unique identifier for the user. string getAuthPassword() Get the password for the user. string getRememberToken() Get the token value for the "remember me" session. void setRememberToken(string $value) Set the token value for the "remember me" session. string getRememberTokenName() Get the column name for the "remember me" token.

UserTrait::getAuthIdentifier()

mixed getAuthIdentifier() Get the unique identifier for the user. Return Value mixed

UserTrait::getRememberTokenName()

string getRememberTokenName() Get the column name for the "remember me" token. Return Value string

UserTrait::setRememberToken()

void setRememberToken(string $value) Set the token value for the "remember me" session. Parameters string $value Return Value void

UserProviderInterface::updateRememberToken()

void updateRememberToken(UserInterface $user, string $token) Update the "remember me" token for the given user in storage. Parameters UserInterface $user string $token Return Value void

UserProviderInterface::validateCredentials()

bool validateCredentials(UserInterface $user, array $credentials) Validate a user against the given credentials. Parameters UserInterface $user array $credentials Return Value bool