从具有关系Laravel 5.2的查询中获取图像

时间:2019-04-13 17:18:30

标签: laravel eloquent relationship querying

我们需要从具有关联关系的查询中获取图像文件名

广告模型:

enter image description here

Advimages模型:

enter image description here 控制器:

  $ads = Advertise::with('images')->take(3)->get();

视图:

enter image description here 错误:

enter image description here

1 个答案:

答案 0 :(得分:0)

您的$ads变量是一个集合。 您只是使用了错误的变量(因为您已经在遍历您的广告并且处于该循环之内)。 只需使用$a,因为它似乎是保存当前广告的变量