15 lines
268 B
PHP
15 lines
268 B
PHP
<?php
|
|
|
|
namespace LucentNotifications\Events;
|
|
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class ReadNotification{
|
|
|
|
use Dispatchable, SerializesModels;
|
|
|
|
function __construct(public string $notificationId)
|
|
{
|
|
}
|
|
} |