15 lines
328 B
PHP
15 lines
328 B
PHP
<?php
|
|
namespace App\Observers;
|
|
|
|
use App\Events\NotificationCreated;
|
|
use App\Models\Notification;
|
|
|
|
class NotificationObserver
|
|
{
|
|
public function created(Notification $notification): void
|
|
{
|
|
\Log::info('Notification created: ' . $notification->id);
|
|
broadcast(new NotificationCreated($notification));
|
|
}
|
|
}
|