1 | <?php |
||
8 | class BackpackUser extends User |
||
9 | { |
||
10 | protected $table = 'users'; |
||
11 | |||
12 | /** |
||
13 | * Send the password reset notification. |
||
14 | * |
||
15 | * @param string $token |
||
16 | * |
||
17 | * @return void |
||
18 | */ |
||
19 | public function sendPasswordResetNotification($token) |
||
23 | |||
24 | /** |
||
25 | * Build the mail representation of the notification. |
||
26 | * |
||
27 | * @return \Illuminate\Notifications\Messages\MailMessage |
||
28 | */ |
||
29 | public function toMail($notifiable) |
||
39 | } |
||
40 |