我正在使用Laravel,CSS和HTML创建网站。
当前问题是我的代码无法使用此“召唤”代码从“ _videos”文件夹中的文件中收集信息。
@foreach ($videos as $video)
{{$page->title}}
@endforeach
错误消息
警告:为foreach()提供了无效的参数
文件夹: Image of folder
答案 0 :(得分:1)
查看代码和收到的错误
@foreach ($videos as $video)
{{$page->title}}
@endforeach
该错误表示“ $ videos”变量不是数组或对象。
如果需要更多信息,我建议您此网站 https://php.net/manual/en/control-structures.foreach.php
答案 1 :(得分:0)
这是因为参数错误。 更改:
@foreach ($videos as $video)
{{$page->title}}
@endforeach
TO
@foreach ($videos as $video)
{{$video->title}}
@endforeach