Closed AleJavierHY closed 2 years ago
Following the documentation I am trying to listen to the BackupWasSuccessful event but it does not fire. I am using version 9 of Laravel. How could I solve this problem?
protected $listen = [ 'Spatie\Backup\Events\BackupWasSuccessful' => [ 'App\Listeners\BackupWasSuccessfulListener', ], ];
How could I solve this problem?
Making a PR with the fix
It seems like currently we only send events if notifications are set up. I'll fix this in the next major version.
Following the documentation I am trying to listen to the BackupWasSuccessful event but it does not fire. I am using version 9 of Laravel. How could I solve this problem?