for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ProtoneMedia\LaravelFormComponents\Components;
class FormRadio extends Component
{
use HandlesValidationErrors;
use HandlesBoundValues;
public string $name;
public string $label;
public $value;
public bool $checked = false;
public function __construct(
string $name,
string $label = '',
$value = 1,
$bind = null,
bool $default = false,
bool $showErrors = false
) {
$this->name = $name;
$this->label = $label;
$this->value = $value;
$this->showErrors = $showErrors;
$inputName = static::convertBracketsToDots($name);
if (old($inputName) !== null) {
$this->checked = old($inputName) == $value;
}
if (!session()->hasOldInput() && $this->isNotWired()) {
$boundValue = $this->getBoundValue($bind, $name);
if (!is_null($boundValue)) {
$this->checked = $boundValue == $this->value;
} else {
$this->checked = $default;
/**
* Generates an ID by the name and value attributes.
*
* @return string
*/
protected function generateIdByName(): string
return "auto_id_" . $this->name . "_" . $this->value;