coolify/app/View/Components/Input.php

31 lines
598 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(
public string $name,
public bool $required = false,
public bool $readonly = false,
public string|null $label = null,
) {
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');
}
}