laravel-desktop-notifier
                                
                                
                                
                                    laravel-desktop-notifier copied to clipboard
                            
                            
                            
                        How to set hyperlink url?
Hello,
How to set hyperlink url for when click on notification open target page.
It looks like there is only support for it in the TerminalNotifierNotifier class, however, you'd have to use the underlying notification class directly and append $notification->addOption('url', 'https://example.com'); such as (this untested example):
app(\Joli\JoliNotif\Notifier\TerminalNotifierNotifier::class)->send(
    app(\Joli\JoliNotif\Notification::class)
      ->setTitle($text)
      ->setBody($body)
      ->setOption('url', 'https://example.com');
);
Note: This also would only work on Mac OS X 10.8 and higher, and requires terminal-notifier to be installed. 😕