gpt4 book ai didi

php - 从 mysql 获取 - laravel

转载 作者:行者123 更新时间:2023-11-29 21:00:23 25 4
gpt4 key购买 nike

我有这个错误。 enter image description here

查看

            @foreach($lista_sezoane as $lista_sezon)
<option value="">{{ $lista_sezon->select('sezon')->where('id_serial','=','7')->get() }}</option>

@endforeach

数据库 enter image description here

最佳答案

您不应该真正以这种方式使用 Blade ,您应该在 Controller 中使用一些变量来处理这些东西,但 Blade 不会阻止您这样做。

尝试这样的事情。

@foreach($lista_sezoane as $lista_sezon)
@foreach($lista_sezon->where('id_serial','7')->get() as $item)
<option value="{{ $item->id }}">{{ $item->sezon }}</option>
@endforeach
@endforeach

对于错误检查,您还需要确保查询将返回结果。这就是为什么变量会更好,但你也可以这样做

@if($lista_sezon->where('id_serial','7')->count() > 0)
... put foreach statement in here
@endif

关于php - 从 mysql 获取 - laravel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37283680/

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