PATH:
home
/
rwabteecom
/
project_11
/
app
/
View
/
Components
/
Fields
/
Editing: Checked.php
<?php namespace App\View\Components\Fields; use Illuminate\Contracts\View\View; use Illuminate\View\Component; class Checked extends Component { public function __construct( public string $title, public string $name, public string $value, public ?bool $checked = false, public ?string $type = "checkbox", public ?string $color = "success", ) { } public function render(): View { return view('components.fields.checked'); } }
SAVE
CANCEL