Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
40 | public function toMail($notifiable) |
||
41 | { |
||
42 | return (new MailMessage()) |
||
43 | ->subject('Herstel jouw wachtwoord.') |
||
44 | ->from(chiefSetting('from_email', null, chiefSetting('contact_email')), chiefSetting('from_name', null, chiefSetting('contact_name'))) |
||
45 | ->view('chief::mails.password-reset', [ |
||
46 | 'reset_url' => route('chief.back.password.reset', $this->token), |
||
47 | ]); |
||
63 |