wyyl/beike/Admin/View/Components/Form/SwitchRadioStatus.php

27 lines
499 B
PHP

<?php
namespace Beike\Admin\View\Components\Form;
use Illuminate\View\Component;
class SwitchRadioStatus extends Component
{
public string $name;
public string $value;
public string $title;
public function __construct(string $name, string $value, string $title)
{
$this->name = $name;
$this->title = $title;
$this->value = $value;
}
public function render()
{
return view('admin::components.form.switch-radio-status');
}
}