如何在拉拉维尔刀片上的 for-loop 中设置值
<select id="year" name="year" class="form-control ">
{{ $last= date('Y')-120 }}
{{ $now = date('Y') }}
@for ($i ={{ $now }}; $i <= {{ $last }}; $i--)
<option value="{{ $i }}">{{ $i }}</option>
@endfor
</select>
我收到错误消息
它看起来像变量无法读取.
如何在 for 循环中设置值?Parse error: syntax error, unexpected '<'