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