在Laravel背包/环境中使用radiobox

时间:2016-12-29 23:28:53

标签: backpack-for-laravel

您好我正试图在Backpack for Laravel中使用广播。我有以下内容,但它没有显示任何radiobox。我在这里做错了什么?

{"name":"value","label":"Value", "title":"Google Auth",
"type":"radio","options":{"0":"Off","1":"On"}}

enter image description here

2 个答案:

答案 0 :(得分:1)

以前radio字段类型中存在错误,但已在Backpack\CRUD 3.1.50中修复。 composer update应该为您解决问题:

enter image description here

答案 1 :(得分:0)

试试这个:

$this->crud->addField([
    'name'        => 'value',
    'label'       => 'Value',
    'type'        => 'radio',
    'options'     => [  0 => "Off",
                        1 => "On"
                     ],
]);