我有一个问题,可以使用laravel自定义通知渠道。我有以下git来实现:
laravel-notification-channels/webhook
当我按照说明安装它时,创建一个新的notofication,在我的路线上调用此通知我收到以下错误:
InvalidArgumentException in Manager.php line 90: Driver [NotificationChannels\Webhook\WebhookChannel] not supported.
我注意到有些包装正在注册为服务提供商,但这并不是。
请问这里有什么问题?我错过了什么?
答案 0 :(得分:0)
问题解决了 - 看起来它与命名空间有关。
使用NotificationChannels \ Webhook \ WebhookChannel; 使用NotificationChannels \ Webhook \ WebhookMessage;