mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-09-03 20:52:58 -05:00
35 lines
706 B
PHP
35 lines
706 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
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(): Closure|string|View
|
|
{
|
|
return view('components.form.alpine.checkbox');
|
|
}
|
|
}
|