19 lines
381 B
PHP
19 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();
|
|
}
|
|
}
|