mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
55 lines
1.1 KiB
PHP
55 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Notifications;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Notifications\Notification;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
|
|
class Alert extends Notification
|
|
{
|
|
use Queueable;
|
|
|
|
protected $fromUser;
|
|
protected $myNotification;
|
|
|
|
/**
|
|
* Create a new notification instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct($user,$msg,$url)
|
|
{
|
|
$this->myNotification = $msg;
|
|
$this->fromUser = $user;
|
|
$this->myUrl = $url;
|
|
}
|
|
|
|
/**
|
|
* Get the notification's delivery channels.
|
|
*
|
|
* @param mixed $notifiable
|
|
* @return array
|
|
*/
|
|
public function via($notifiable)
|
|
{
|
|
return ['database'];
|
|
}
|
|
|
|
/**
|
|
* Get the array representation of the notification.
|
|
*
|
|
* @param mixed $notifiable
|
|
* @return array
|
|
*/
|
|
public function toDatabase($notifiable)
|
|
{
|
|
return [
|
|
'from' => $this->fromUser,
|
|
'msg' => $this->myNotification,
|
|
'url' => $this->myUrl,
|
|
];
|
|
}
|
|
}
|