Owen Voke

Results 192 comments of Owen Voke

I wonder if this is related to: https://github.com/jolicode/JoliNotif/issues/70 and https://github.com/jolicode/JoliNotif/issues/45. IIRC, Toaster doesn't really work on Windows 10, so I was working on a Snoretoast adapter but not much has...

@MarkusBiggus, are you still experiencing this issue? 🤔

What version of Laravel are you using? Could you perhaps post the contents of the `require`/`require-dev` section in your Composer JSON?

This package dropped support for Laravel 5.7 in v2.4.0, so you'll need to use an older version of the package. Can you try using `composer require nunomaduro/laravel-desktop-notifier ^2.3.0`?

It looks like there is only support for it in [the `TerminalNotifierNotifier` class](https://github.com/jolicode/JoliNotif/blob/master/doc/02-notification.md#url), however, you'd have to use the underlying notification class directly and append `$notification->addOption('url', 'https://example.com');` such as (this...

Just for reference, what class is your command extending? This sounds like the `$laravel` property is not being set. Could you also confirm your framework version?

Does it extend `Illuminate\Console\Command` in your custom class? I'll see if I can replicate this later. 👍🏻

I was unable to replicate this issue with Laravel 8 and a default command that just contains: ```php class NotifyCommand extends Command { protected $signature = 'notify'; public function handle()...

It seems like https://github.com/julienXX/terminal-notifier/issues/283 is probably the reason behind this no longer working. Unfortunate, but might not be possible to re-add support. Looks like Terminal Notifier isn't really being maintained...