coolify/app/View/Components/Forms/Select.php

42 lines
930 B
PHP
Raw Normal View History

2023-07-13 11:16:24 +00:00
<?php
namespace App\View\Components\Forms;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
use Visus\Cuid2\Cuid2;
class Select extends Component
{
/**
* Create a new component instance.
*/
public function __construct(
2024-03-20 11:54:06 +00:00
public ?string $id = null,
public ?string $name = null,
public ?string $label = null,
public ?string $helper = null,
2024-06-10 20:43:34 +00:00
public bool $required = false,
public bool $disabled = false,
public string $defaultClass = 'select w-full'
2023-08-11 18:48:52 +00:00
) {
2023-07-13 11:16:24 +00:00
//
}
/**
* Get the view / contents that represent the component.
*/
public function render(): View|Closure|string
{
2024-06-10 20:43:34 +00:00
if (is_null($this->id)) {
2024-07-25 11:31:59 +00:00
$this->id = new Cuid2;
2024-06-10 20:43:34 +00:00
}
if (is_null($this->name)) {
$this->name = $this->id;
}
2023-07-13 11:16:24 +00:00
return view('components.forms.select');
}
}