laravel - 仅在特定条件下选中的单选按钮
laravel - radiobutton selected only in certain condition
我需要根据条件禁用单选按钮。这是我的尝试,但它不起作用。如何实现?
<input type="radio" id="type100" name="type" enabled="{{ ((auth()->user()->type100) > 10) }}" value="100" checked>
试试这些
<input type="radio" id="type100" name="type" {{ auth()->user()->type100 > 10 ? '' : 'disabled' }} value="100" checked>
我需要根据条件禁用单选按钮。这是我的尝试,但它不起作用。如何实现?
<input type="radio" id="type100" name="type" enabled="{{ ((auth()->user()->type100) > 10) }}" value="100" checked>
试试这些
<input type="radio" id="type100" name="type" {{ auth()->user()->type100 > 10 ? '' : 'disabled' }} value="100" checked>