Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | public function build() |
||
26 | { |
||
27 | $url = URL::temporarySignedRoute( |
||
28 | 'verification.verify', |
||
29 | Carbon::now()->addMinutes(config('auth.verification.expire')), |
||
30 | [ |
||
31 | 'id' => $this->user->getKey(), |
||
32 | 'hash' => sha1($this->user->getEmailForVerification()), |
||
33 | ] |
||
34 | ); |
||
35 | |||
36 | return $this->view('mails.auth.verify-email', [ |
||
37 | 'url' => $url, |
||
38 | ])->subject('Tripleperformance : Vérifiez votre email'); |
||
39 | } |
||
41 |