Owl\Repositories\Fluent\UserRepository::getByEmail PHP 메소드

getByEmail() 공개 메소드

Get a user by email.
public getByEmail ( string $email ) : stdClass
$email string
리턴 stdClass
    public function getByEmail($email)
    {
        return \DB::table($this->getTableName())->where('email', $email)->first();
    }