* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0 */ namespace App\Notifications; use App\Interfaces\SystemNotificationInterface; use App\Models\Torrent; use App\Models\User; use App\Notifications\Channels\SystemNotificationChannel; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Notifications\Notification; class TorrentDeleted extends Notification implements ShouldQueue, SystemNotificationInterface { use Queueable; public function __construct(public Torrent $torrent, public string $reason) { } /** * Get the notification's delivery channels. * * @return class-string */ public function via(object $notifiable): string { return SystemNotificationChannel::class; } /** * Get the array representation of the notification. * * @return array */ public function toSystemNotification(User $notifiable): array { return [ 'subject' => "Torrent Deleted! - {$this->torrent->name}", 'message' => <<torrent->name} has been removed from our site. Our system shows that you were either the uploader, a seeder or a leecher on said torrent. We just wanted to let you know you can safely remove it from your client. [b]Removal Reason:[/b] {$this->reason} BBCODE ]; } }