| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 57 | public function toMail($notifiable) |
||
| 58 | { |
||
| 59 | return (new MailMessage) |
||
| 60 | ->subject(Lang::get('common/notifications/password_reset.subject')) |
||
| 61 | ->greeting(Lang::get('common/notifications/password_reset.greeting')) |
||
| 62 | ->line(Lang::get('common/notifications/password_reset.line_1')) |
||
| 63 | ->action(Lang::get('common/notifications/password_reset.action'), url(route('password.reset', $this->token, false))) |
||
| 64 | ->line(Lang::get('common/notifications/password_reset.line_2')) |
||
| 65 | ->salutation(Lang::get('common/notifications/password_reset.salutation', ['name' => config('mail.from.name')])); |
||
| 66 | } |
||
| 68 |