chore: change wording on suspension notification

This commit is contained in:
Miguel Nogueira 2022-03-05 22:24:38 +00:00
parent 7414bcf6b6
commit e9c24d8f37

View File

@ -70,7 +70,7 @@ class UserBanned extends Notification implements ShouldQueue
->greeting('Hi ' . $notifiable->name . ',')
->from(config('notification.sender.address'), config('notification.sender.name'))
->line('Hello, ')
->line('Moderators have just banned user '.$this->user->name.' for '.$this->ban->reason)
->line('Moderators have just suspended user '.$this->user->name.' for '.$this->ban->reason)
->line('This ban will remain in effect until '.$this->ban->bannedUntil.'.')
->action('View profile', url(route('showSingleProfile', ['user' => $this->user->id])))
->salutation('The team at ' . config('app.name'));