classes/Blueprints/Attributes/Time.php
<?php
namespace Bnomei\Blueprints\Attributes;
use Attribute;
#[Attribute(Attribute::TARGET_PROPERTY)]
class Time extends GenericAttribute
{
/**
* Pass true or an array of time field options to show the time selector
*/
public function __construct(
public bool $time = false
) {}
}