🌈 基于 EasyWeChat 和 Laravel 的模板消息通知组件。
- PHP >= 7.2
- Laravel >= 7.0
- EasyWeChat >= 5.0
$ composer require fcorz/laravel-wechat-notification -vvv
class User
{
use Notifiable;
public function routeNotificationForWechat()
{
return 'xxxx'; // openid
}
}
\Notification::send($user, new \fcorz\WechatNotification\TemplateNotification($templateId, $url, $data));