Add NotificationObserver

pull/1232/head
Daniel Supernault 2019-04-30 22:41:38 -06:00
rodzic b3a9587756
commit 64462cdb94
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 64 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,64 @@
<?php
namespace App\Observers;
use App\Notification;
use App\Services\NotificationService;
class NotificationObserver
{
/**
* Handle the notification "created" event.
*
* @param \App\Notification $notification
* @return void
*/
public function created(Notification $notification)
{
NotificationService::set($notification->profile_id, $notification->id);
}
/**
* Handle the notification "updated" event.
*
* @param \App\Notification $notification
* @return void
*/
public function updated(Notification $notification)
{
NotificationService::set($notification->profile_id, $notification->id);
}
/**
* Handle the notification "deleted" event.
*
* @param \App\Notification $notification
* @return void
*/
public function deleted(Notification $notification)
{
NotificationService::del($notification->profile_id, $notification->id);
}
/**
* Handle the notification "restored" event.
*
* @param \App\Notification $notification
* @return void
*/
public function restored(Notification $notification)
{
NotificationService::set($notification->profile_id, $notification->id);
}
/**
* Handle the notification "force deleted" event.
*
* @param \App\Notification $notification
* @return void
*/
public function forceDeleted(Notification $notification)
{
NotificationService::del($notification->profile_id, $notification->id);
}
}