* @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\User; use App\Notifications\Channels\SystemNotificationChannel; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Notifications\Notification; class WarningCreated extends Notification implements ShouldQueue, SystemNotificationInterface { use Queueable; public function __construct(public string $message) { } /** * 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' => 'Received warning', 'message' => "You have received a [b]warning[/b]. Reason: {$this->message}", ]; } }