Skip to content
Snippets Groups Projects
Helper.php 409 B
Newer Older
  • Learn to ignore specific revisions
  • <?php
    
    declare(strict_types=1);
    
    namespace App\Views\Components\Forms;
    
    class Helper extends FormComponent
    {
        /**
    
         */
        protected string $type = 'default';
    
        public function render(): string
        {
            $class = 'text-gray-600';
    
            return <<<HTML
    
                <small id="{$this->id}" class="{$class} {$this->class}">{$this->slot}</small>