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

44 lines
965 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\Support\Str;
2023-07-13 11:16:24 +00:00
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 string $defaultClass = 'select'
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)) {
$this->id = new Cuid2(7);
}
if (is_null($this->name)) {
$this->name = $this->id;
}
2023-07-13 11:16:24 +00:00
$this->label = Str::title($this->label);
2024-06-10 20:43:34 +00:00
2023-07-13 11:16:24 +00:00
return view('components.forms.select');
}
}