File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/Darryldecode/Backend/Components Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 2323Route::post ('password/email ' , 'PasswordController@postEmail ' );
2424
2525// Password reset routes...
26- Route::get ('password/reset/{token} ' , 'PasswordController@getReset ' );
26+ Route::get ('password/reset/{token} ' , 'PasswordController@getReset ' )-> name ( ' password.reset ' ) ;
2727Route::post ('password/reset ' , 'PasswordController@postReset ' );
Original file line number Diff line number Diff line change 55use Illuminate \Auth \Passwords \CanResetPassword ;
66use Illuminate \Contracts \Auth \Authenticatable as AuthenticatableContract ;
77use Illuminate \Contracts \Auth \CanResetPassword as CanResetPasswordContract ;
8+ use Illuminate \Notifications \Notifiable ;
89
910class User extends Model implements AuthenticatableContract, CanResetPasswordContract {
1011
11- use Authenticatable, CanResetPassword;
12+ use Authenticatable, CanResetPassword, Notifiable ;
1213
1314 const PERMISSION_ALLOW = 1 ;
1415 const PERMISSION_INHERIT = 0 ;
You can’t perform that action at this time.
0 commit comments