| 1 | <?php | ||
| 9 | class BackpackUser extends User | ||
| 10 | { | ||
| 11 | use HasParentModel; | ||
| 12 | |||
| 13 | protected $table = 'users'; | ||
| 14 | |||
| 15 | /** | ||
| 16 | * Send the password reset notification. | ||
| 17 | * | ||
| 18 | * @param string $token | ||
| 19 | * | ||
| 20 | * @return void | ||
| 21 | */ | ||
| 22 | public function sendPasswordResetNotification($token) | ||
| 26 | |||
| 27 | /** | ||
| 28 | * Get the e-mail address where password reset links are sent. | ||
| 29 | * | ||
| 30 | * @return string | ||
| 31 | */ | ||
| 32 | public function getEmailForPasswordReset() | ||
| 36 | } | ||
| 37 |