lasthourcloud/app/View/Components/Input.php

31 lines
628 B
PHP
Raw Normal View History

2023-04-17 12:11:02 +00:00
<?php
namespace App\View\Components;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class Input extends Component
{
/**
* Create a new component instance.
*/
2023-04-19 10:42:15 +00:00
public function __construct(
2023-04-25 12:43:35 +00:00
public string $id,
2023-04-19 10:42:15 +00:00
public bool $required = false,
public bool $readonly = false,
public string|null $label = null,
2023-04-19 12:00:31 +00:00
public string|null $type = 'text',
2023-04-19 10:42:15 +00:00
) {
2023-04-17 12:11:02 +00:00
}
/**
* Get the view / contents that represent the component.
*/
public function render(): View|Closure|string
{
return view('components.input');
}
}