mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-07-10 15:53:40 -07:00
32 lines
675 B
PHP
32 lines
675 B
PHP
<?php
|
|
|
|
namespace FireflyIII\View\Components\Form\Alpine;
|
|
|
|
use Closure;
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\View\Component;
|
|
|
|
class Checkbox extends Component
|
|
{
|
|
public string $id;
|
|
public string $value;
|
|
public string $title;
|
|
/**
|
|
* Create a new component instance.
|
|
*/
|
|
public function __construct(string $id, string $value, string $title)
|
|
{
|
|
$this->id = $id;
|
|
$this->value= $value;
|
|
$this->title = $title;
|
|
}
|
|
|
|
/**
|
|
* Get the view / contents that represent the component.
|
|
*/
|
|
public function render(): View|Closure|string
|
|
{
|
|
return view('components.form.alpine.checkbox');
|
|
}
|
|
}
|