gpt4 book ai didi

带输入按钮的 Laravel Blade if 语句

转载 作者:行者123 更新时间:2023-12-02 15:08:02 25 4
gpt4 key购买 nike

有人知道如何使用 Laravel Blade 正确创建输入按钮吗?我需要在活跃状态和不活跃状态之间切换。这就是我使用 if 语句的原因。

这是我在表格数据中创建输入按钮的代码 <td> .

@if ({{ $customer->active }})

<input type="button" name="active" value="Active">

@else

<input type="button" name="active" value="Inactive">

@endif

错误

Parse error: syntax error, unexpected '<' (View:...)

结果(实现解决方案后)

<td>
<input type="button" id="active" name="active"
value="{{ $customer->active ? 'Active' : 'Inactive' }}">

</td>

enter image description here

最佳答案

如果我的理解正确,您只是想切换按钮的值对吗?为什么不只是 <input type="button" name="active" value="{{ $customer->active ? 'Active' : 'Inactive' }}">

关于带输入按钮的 Laravel Blade if 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46012315/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com