classes/Blueprints/Attributes/Link.php
<?php
namespace Bnomei\Blueprints\Attributes;
use Attribute;
#[Attribute(Attribute::TARGET_PROPERTY)]
class Link extends GenericAttribute
{
/**
* Whether each item should be clickable
*/
public function __construct(
public bool $link = true
) {}
}