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

44 lines
1.1 KiB
PHP
Raw Normal View History

2023-06-16 08:32:29 +00:00
<?php
namespace App\View\Components\Forms;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
use Visus\Cuid2\Cuid2;
class Input extends Component
{
public function __construct(
public ?string $id = null,
public ?string $name = null,
public ?string $type = 'text',
public ?string $value = null,
public ?string $label = null,
2024-06-10 20:43:34 +00:00
public bool $required = false,
public bool $disabled = false,
public bool $readonly = false,
public ?string $helper = null,
2024-06-10 20:43:34 +00:00
public bool $allowToPeak = true,
public bool $isMultiline = false,
public string $defaultClass = 'input',
2023-08-11 18:48:52 +00:00
) {
2023-06-16 08:32:29 +00:00
}
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;
}
if ($this->type === 'password') {
2024-06-10 20:43:34 +00:00
$this->defaultClass = $this->defaultClass.' pr-[2.8rem]';
}
2024-06-10 20:43:34 +00:00
2023-07-28 08:55:26 +00:00
// $this->label = Str::title($this->label);
2023-06-16 08:32:29 +00:00
return view('components.forms.input');
}
}