Laravel WebPush链接通知?

Laravel WebPush链接通知?,laravel,web-push,Laravel,Web Push,所以我在我的laravel网站上安装了WebPush,以便在某些事件中向特定用户发送通知。 它创造了奇迹 但是。。我想使用“操作”将用户发送到某个链接。我的尝试失败了。 有人有什么建议吗 这是我的通知代码: public function toWebPush($notifiable, $notification) { return (new WebPushMessage) ->title('Your Reminder')

所以我在我的laravel网站上安装了WebPush,以便在某些事件中向特定用户发送通知。 它创造了奇迹

但是。。我想使用“操作”将用户发送到某个链接。我的尝试失败了。 有人有什么建议吗

这是我的通知代码:

public function toWebPush($notifiable, $notification)
    {
        return (new WebPushMessage)
            ->title('Your Reminder')
            ->icon('/notification-icon.png')
            ->body($this->info['body'])
            ->vibrate([300, 200, 300])
            ->action('View Reminder', 'https://xxxxxxx.xxx/reminder/' . $this->info['reminder_id']);
    }
提前谢谢你