DocsLaravel-backupSending-notificationsAdding extra notification channels
You are viewing the documentation for an older version of this package. You can check the version you are using with the following command:
composer show spatie/laravel-backup
Adding extra notification channels
By default the package send notifications via email or Slack. It's easy to add an extra notification channel such as Telegram or native mobile push notification, etc.
The Laravel community is awesome. Shortly after Laravel 5.3 was released various developers worked together to create 30+ notification channels. You can view them all on http://laravel-notification-channels.com.
In the following example we're going to add the Pusher push notifications channel. Other notification drivers can be added in the same way.
Let say you want to be notified via Pusher push notifications when a backup fails. To make this happen you'll need to create your own BackupFailed notification class like the one below:
namespaceApp\Notifications;
useSpatie\Backup\Notifications\Notifications\BackupHasFailedasBaseNotification;
useNotificationChannels\PusherPushNotifications\Message;
classBackupHasFailedextendsBaseNotification
{
publicfunctiontoPushNotification($notifiable)
{
returnMessage::create()
->iOS()
->badge(1)
->sound('fail')
->body("The backup of {$this->applicationName()} to disk {$this->diskName()} has failed");
}
}
##3. Register your custom notification in the config file
The last thing you need to do is register your custom notification in the config file.