mirror of
https://gh.wpcy.net/https://github.com/rilustrisimo/freescout-support.git
synced 2026-04-25 13:52:21 +08:00
18 lines
381 B
PHP
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();
|
|
}
|
|
}
|