App\Services\Html\FormBuilder::checkboxWithLabel PHP Method

checkboxWithLabel() public method

public checkboxWithLabel ( $subject, string $fieldName, string $label, array $options = [] ) : string
$fieldName string
$label string
$options array
return string
    public function checkboxWithLabel($subject, string $fieldName, string $label, array $options = []) : string
    {
        $options = array_merge(['class' => 'form-control'], $options);
        return el('label.-checkbox', $this->checkbox($fieldName, 1, $this->useInitialValue($subject, $fieldName), $options) . ' ' . $label);
    }