| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php namespace Arcanesoft\Auth\Notifications\Users; |
||
| 60 | public function toMail() |
||
| 61 | { |
||
| 62 | return (new MailMessage) |
||
| 63 | ->line(trans('auth::password.mail.line-1')) |
||
| 64 | ->action(trans('auth::password.mail.action'), route('auth::password.token', [$this->token])) |
||
| 65 | ->line(trans('auth::password.mail.line-2')); |
||
| 66 | } |
||
| 67 | } |
||
| 68 |