Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | public function build() |
||
25 | { |
||
26 | $url = url(route('password.reset', [ |
||
27 | 'token' => $this->token, |
||
28 | 'email' => $this->user->getEmailForPasswordReset(), |
||
29 | ], false)); |
||
30 | |||
31 | return $this->view('mails.auth.password-reset-link', [ |
||
32 | 'url' => $url, |
||
33 | 'validity' => config('auth.passwords.'.config('auth.defaults.passwords').'.expire') |
||
34 | ])->subject('Tripleperformance : Réinialisez votre mot de passe'); |
||
35 | } |
||
37 |