coolify/app/View/Components/Input.php

31 lines
628 B
PHP
Raw Normal View History

2023-04-17 14:11:02 +02: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 12:42:15 +02:00
public function __construct(
2023-04-25 14:43:35 +02:00
public string $id,
2023-04-19 12:42:15 +02:00
public bool $required = false,
public bool $readonly = false,
public string|null $label = null,
2023-04-19 14:00:31 +02:00
public string|null $type = 'text',
2023-04-19 12:42:15 +02:00
) {
2023-04-17 14:11:02 +02:00
}
/**
* Get the view / contents that represent the component.
*/
public function render(): View|Closure|string
{
return view('components.input');
}
}