You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
<?php
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 站内通知
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
namespace App\Notifications;
|
|
|
|
|
|
|
|
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
|
|
use Illuminate\Notifications\Notification;
|
|
|
|
|
|
|
|
|
|
|
|
class InnerNotify extends Notification
|
|
|
|
|
|
{
|
|
|
|
|
|
use Queueable;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Create a new notification instance.
|
|
|
|
|
|
*
|
|
|
|
|
|
* @return void
|
|
|
|
|
|
*/
|
|
|
|
|
|
public function __construct()
|
|
|
|
|
|
{
|
|
|
|
|
|
//
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 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 [
|
|
|
|
|
|
// 通知渠道。inner站内,sms短信,email邮件,wechat微信服务号
|
|
|
|
|
|
'title' => $notifiable->title ?? '通知',
|
|
|
|
|
|
'content' => $notifiable->content ?? '',
|
|
|
|
|
|
'other' => $notifiable->other ?? []
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|