Files
speedtest-tracker/app/Notifications/Apprise/TestNotification.php
T
Alex Justesen a47e3225e5 Release v1.12.0 (#2493)
Co-authored-by: Sven van Ginkel <svenvanginkel@icloud.com>
Co-authored-by: Alex Justesen <1144087+alexjustesen@users.noreply.github.com>
2025-12-05 15:33:44 -05:00

35 lines
847 B
PHP

<?php
namespace App\Notifications\Apprise;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Notification;
class TestNotification extends Notification implements ShouldQueue
{
use Queueable;
/**
* Get the notification's delivery channels.
*
* @return array<int, string>
*/
public function via(object $notifiable): array
{
return ['apprise'];
}
/**
* Get the Apprise message representation of the notification.
*/
public function toApprise(object $notifiable): AppriseMessage
{
return AppriseMessage::create()
->urls($notifiable->routes['apprise_urls'])
->title('Test Notification')
->body('👋 Testing the Apprise notification channel.')
->type('info');
}
}