Files
panel-pelican-dev/app/Notifications/RemovedFromServer.php

34 lines
887 B
PHP
Raw Normal View History

<?php
2024-03-12 22:39:16 -04:00
namespace App\Notifications;
use App\Models\Server;
use App\Models\User;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
class RemovedFromServer extends Notification implements ShouldQueue
{
use Queueable;
public function __construct(public Server $server) {}
/** @return string[] */
public function via(): array
{
return ['mail'];
}
public function toMail(User $notifiable): MailMessage
{
2021-01-23 12:33:34 -08:00
return (new MailMessage())
->error()
->greeting('Hello ' . $notifiable->username . '.')
->line('You have been removed as a subuser for the following server.')
->line('Server Name: ' . $this->server->name)
->action('Visit Panel', config('app.url'));
}
}