record update

This commit is contained in:
2024-08-22 17:58:30 +03:00
parent 3aa9191cba
commit 0643578d15
+17
View File
@@ -0,0 +1,17 @@
<?php
namespace Lucent\Record\Event;
use Illuminate\Foundation\Events\Dispatchable;
use Lucent\Record\Record;
class RecordUpdated
{
use Dispatchable;
public function __construct(
public Record $record,
)
{
}
}