You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Laravel will notify all routes, even if a notification is being sent through a single route only, like:
```
Notification::route('nexmo', $number)->notify(new Notification());
```
Will also invoke the send method of WebPushChannel, but the array key won't exist, and thus it throws an exception when trying to call ->isEmpty()
0 commit comments