Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | public function toMail($notifiable) |
||
10 | { |
||
11 | return (new MailMessage) |
||
12 | ->subject(trans('sanctumauthstarter::notify.password.subject')) |
||
13 | ->line(trans('sanctumauthstarter::notify.password.introduction')) |
||
14 | ->line(trans('sanctumauthstarter::notify.password.message')) |
||
15 | ->action(trans('sanctumauthstarter::notify.password.action'), route(config('sanctumauthstarter.notification_url.password.password_change'))) |
||
16 | ->line(trans('sanctumauthstarter::notify.password.complimentary_close')); |
||
17 | } |
||
19 |