2019-05-01 04:41:38 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Observers;
|
|
|
|
|
|
|
|
use App\Notification;
|
|
|
|
use App\Services\NotificationService;
|
|
|
|
|
|
|
|
class NotificationObserver
|
|
|
|
{
|
2022-09-27 05:58:15 +00:00
|
|
|
/**
|
|
|
|
* Handle events after all transactions are committed.
|
|
|
|
*
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public $afterCommit = true;
|
|
|
|
|
2019-05-01 04:41:38 +00:00
|
|
|
/**
|
|
|
|
* 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);
|
|
|
|
}
|
|
|
|
}
|