| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function toMail() |
||
| 30 | { |
||
| 31 | return $this->newMailMessage() |
||
| 32 | ->subject(trans('auth.email_reset_subject', ['appName' => setting('app-name')])) |
||
| 33 | ->line(trans('auth.email_reset_text')) |
||
| 34 | ->action(trans('auth.reset_password'), baseUrl('password/reset/' . $this->token)) |
||
| 35 | ->line(trans('auth.email_reset_not_requested')); |
||
| 36 | } |
||
| 37 | } |
||
| 38 |