49 lines
973 B
PHP
49 lines
973 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Notifications;
|
||
|
|
|
||
|
|
use Illuminate\Bus\Queueable;
|
||
|
|
use Illuminate\Notifications\Notification;
|
||
|
|
|
||
|
|
class SendNotification extends Notification
|
||
|
|
{
|
||
|
|
use Queueable;
|
||
|
|
private $notify;
|
||
|
|
/**
|
||
|
|
* Create a new notification instance.
|
||
|
|
*
|
||
|
|
* @return void
|
||
|
|
*/
|
||
|
|
public function __construct($notify)
|
||
|
|
{
|
||
|
|
$this->notify = $notify;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 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 toArray($notifiable)
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
'id' => $this->notify['id'],
|
||
|
|
'user' => $this->notify['user'],
|
||
|
|
'message' => $this->notify['message'],
|
||
|
|
'url' => $this->notify['url']
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|