yeet name_first and name_last from users table

This commit is contained in:
Matthew Penner
2021-07-28 21:31:00 -06:00
parent f1be653486
commit bf9dfa87da
20 changed files with 144 additions and 82 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ class AddedToServer extends Notification implements ShouldQueue
public function toMail($notifiable)
{
return (new MailMessage())
->greeting('Hello ' . $this->server->user . '!')
->greeting('Hello user!')
->line('You have been added as a subuser for the following server, allowing you certain control over the server.')
->line('Server Name: ' . $this->server->name)
->action('Visit Server', url('/server/' . $this->server->uuidShort));
+1 -1
View File
@@ -54,7 +54,7 @@ class RemovedFromServer extends Notification implements ShouldQueue
{
return (new MailMessage())
->error()
->greeting('Hello ' . $this->server->user . '.')
->greeting('Hello user!')
->line('You have been removed as a subuser for the following server.')
->line('Server Name: ' . $this->server->name)
->action('Visit Panel', route('index'));