create record wip

This commit is contained in:
2026-01-08 23:23:48 +02:00
parent 2a718ac9ee
commit 4470d922b7
42 changed files with 1048 additions and 556 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php namespace Lucent\Core\Data;
use Carbon\Carbon;
class RecordField
{
public function __construct(
public string $id,
public string $locale,
public mixed $value,
public Carbon $createdAt,
public string $createdBy,
public Carbon $updatedAt,
public string $updatedBy,
public int $version,
) {}
}