| 1 | <?php |
||
| 15 | class User extends Model implements |
||
| 16 | AuthenticatableContract, |
||
| 17 | AuthorizableContract, |
||
| 18 | CanResetPasswordContract |
||
| 19 | { |
||
| 20 | use Authenticatable, Authorizable, CanResetPassword, MustVerifyEmail, Notifiable; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Send the password reset notification. |
||
| 24 | * |
||
| 25 | * @param string $token |
||
| 26 | * @return void |
||
| 27 | */ |
||
| 28 | public function sendPasswordResetNotification($token) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * social accounts. |
||
| 38 | */ |
||
| 39 | public function linkedSocialAccounts() |
||
| 43 | } |
||
| 44 |