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