Push notifications for Laravel Backup

Deprecated, use Laravel Forge webhooks

If you are using the version 5 of great backup package from Spatie, you can configure the F-Bar package to subscribe to the events from when the backups are finished.

1. Install F-Bar package

Set up notifications via composer module

2. Add F-Bar package event subscriber

In app/Providers/EventServiceProvider.php add

class EventServiceProvider extends ServiceProvider
{
    protected $listen = [];

    protected $subscribe = [
    	// Add this listener for notifications in F-Bar
        \Eastwest\FBar\Listeners\BackupNotifications::class,
    ];

F-Bar of successful backup

Read more…