Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
53 | public function toMail($notifiable): MailMessage |
||
54 | { |
||
55 | return (new MailMessage()) |
||
56 | ->subject(trans('cortex/fort::emails.auth.lockout.subject')) |
||
57 | ->line(trans('cortex/fort::emails.auth.lockout.intro', [ |
||
58 | 'created_at' => now(), |
||
59 | 'ip' => $this->request->ip(), |
||
60 | 'agent' => $this->request->server('HTTP_USER_AGENT'), |
||
61 | ])) |
||
62 | ->line(trans('cortex/fort::emails.auth.lockout.outro')); |
||
63 | } |
||
64 | } |
||
65 |