@@ -55,21 +55,21 @@ |
||
55 | 55 | }) |
56 | 56 | ->attachment(function ($attachment) use ($item) { |
57 | 57 | $attachment->title($title = config('firewall.notifications.message.uri.title')) |
58 | - ->content($item['server']['REQUEST_URI']); |
|
58 | + ->content($item['server']['REQUEST_URI']); |
|
59 | 59 | }) |
60 | 60 | ->attachment(function ($attachment) use ($item) { |
61 | 61 | $attachment->title(config('firewall.notifications.message.user_agent.title')) |
62 | - ->content($item['userAgent']); |
|
62 | + ->content($item['userAgent']); |
|
63 | 63 | }) |
64 | 64 | ->attachment(function ($attachment) use ($item) { |
65 | 65 | $attachment->title(config('firewall.notifications.message.blacklisted.title')) |
66 | - ->content($item['isBlacklisted'] ? 'YES' : 'NO'); |
|
66 | + ->content($item['isBlacklisted'] ? 'YES' : 'NO'); |
|
67 | 67 | }); |
68 | 68 | |
69 | 69 | if ($item['geoIp']) { |
70 | 70 | $message->attachment(function ($attachment) use ($item) { |
71 | 71 | $attachment->title(config('firewall.notifications.message.geolocation.title')) |
72 | - ->fields($this->makeGeolocation($item)); |
|
72 | + ->fields($this->makeGeolocation($item)); |
|
73 | 73 | }); |
74 | 74 | } |
75 | 75 |