first commit

This commit is contained in:
2024-12-19 04:19:57 +02:00
commit cade33cfb6
23 changed files with 768 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
namespace LucentNotifications\Events;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class ReadNotification{
use Dispatchable, SerializesModels;
function __construct(public string $notificationId)
{
}
}