Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | public function toMail($notifiable) |
||
11 | { |
||
12 | return (new MailMessage)->markdown('twill::emails.html.email', [ |
||
13 | 'url' => url(request()->getScheme() . '://' . config('twill.admin_app_url') . route('admin.login.form', null, false)), |
||
14 | 'actionText' => 'Login', |
||
15 | 'copy' => 'You are receiving this email because your password has been changed by Admin.', |
||
16 | ]); |
||
19 |