Files
lucent-laravel/src/Schema/FilesSchema.php
T

29 lines
522 B
PHP
Raw Normal View History

2023-10-02 23:10:49 +03:00
<?php
namespace Lucent\Schema;
use Lucent\Primitive\Collection;
class FilesSchema implements Schema
{
public Type $type = Type::FILES;
/**
* @param Collection<FieldInterface> $fields
*/
function __construct(
public string $name,
public string $label,
public Collection $fields,
public string $path,
public bool $isEntry = false,
public string $color = "",
public string $titleTemplate = "",
)
{
}
}