This commit is contained in:
Andras Bacsai
2023-04-17 14:11:02 +02:00
parent dea324b512
commit d6c725ea83
4 changed files with 51 additions and 14 deletions

View File

@@ -0,0 +1,26 @@
<?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.
*/
public function __construct(public string $name, public bool $required = false)
{
//
}
/**
* Get the view / contents that represent the component.
*/
public function render(): View|Closure|string
{
return view('components.input');
}
}