@@ -71,8 +71,8 @@ discard block |
||
71 | 71 | return (new SlackMessage) |
72 | 72 | ->from(config('app.name')) |
73 | 73 | ->warning() |
74 | - ->content(trans('authentication-log::messages.content', ['app' => config('app.name')])) |
|
75 | - ->attachment(function ($attachment) use ($notifiable) { |
|
74 | + ->content(trans('authentication-log::messages.content', [ 'app' => config('app.name') ])) |
|
75 | + ->attachment(function($attachment) use ($notifiable) { |
|
76 | 76 | $attachment->fields([ |
77 | 77 | 'Account' => $notifiable->email, |
78 | 78 | 'Time' => $this->authenticationLog->login_at->toCookieString(), |
@@ -91,6 +91,6 @@ discard block |
||
91 | 91 | public function toNexmo($notifiable) |
92 | 92 | { |
93 | 93 | return (new NexmoMessage) |
94 | - ->content(trans('authentication-log::messages.content', ['app' => config('app.name')])); |
|
94 | + ->content(trans('authentication-log::messages.content', [ 'app' => config('app.name') ])); |
|
95 | 95 | } |
96 | 96 | } |