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 23
23
Route::post ('password/email ' , 'PasswordController@postEmail ' );
24
24
25
25
// Password reset routes...
26
- Route::get ('password/reset/{token} ' , 'PasswordController@getReset ' );
26
+ Route::get ('password/reset/{token} ' , 'PasswordController@getReset ' )-> name ( ' password.reset ' ) ;
27
27
Route::post ('password/reset ' , 'PasswordController@postReset ' );
Original file line number Diff line number Diff line change 5
5
use Illuminate \Auth \Passwords \CanResetPassword ;
6
6
use Illuminate \Contracts \Auth \Authenticatable as AuthenticatableContract ;
7
7
use Illuminate \Contracts \Auth \CanResetPassword as CanResetPasswordContract ;
8
+ use Illuminate \Notifications \Notifiable ;
8
9
9
10
class User extends Model implements AuthenticatableContract, CanResetPasswordContract {
10
11
11
- use Authenticatable, CanResetPassword;
12
+ use Authenticatable, CanResetPassword, Notifiable ;
12
13
13
14
const PERMISSION_ALLOW = 1 ;
14
15
const PERMISSION_INHERIT = 0 ;
You can’t perform that action at this time.
0 commit comments