freescout-support/app/Observers/DatabaseNotificationObserver.php
2018-09-08 05:40:21 -07:00

18 lines
381 B
PHP

<?php
namespace App\Observers;
use Illuminate\Notifications\DatabaseNotification;
class DatabaseNotificationObserver
{
/**
* Notifications DB record created.
*
* @param DatabaseNotification $notification
*/
public function created(DatabaseNotification $notification)
{
$notification->notifiable->clearWebsiteNotificationsCache();
}
}