Files
pingan_new/app/Channels/WeChatChannel.php
2020-08-06 16:42:18 +08:00

20 lines
422 B
PHP

<?php
namespace App\Channels;
use Illuminate\Notifications\Notification;
class VoiceChannel
{
/**
* 发送指定的通知.
* @param mixed $notifiable
* @param \Illuminate\Notifications\Notification $notification
* @return void
*/
public function send($notifiable, Notification $notification)
{
$message = $notification->toWeChat($notifiable);
}
}