Files
water_new/app/Channels/WechatMiniChannel.php
2023-03-09 11:54:13 +08:00

15 lines
229 B
PHP

<?php
namespace App\Channels;
use Illuminate\Notifications\Notification;
class WechatMiniChannel
{
public function send($notifiable, Notification $notification)
{
$notification->toWeChat($notifiable);
}
}