Laravel模型关系

时间:2018-10-31 12:13:47

标签: php laravel

我无法连接到 laravel 5.6

中的模型功能
     <img src="{{$item->file_id ? $item->photo->file_url() : 
    "http://www.ecmsnews.com/wp-content/themes/nucleare-pro/images/no-image-box.png"}}"  
     width="200" height="100">

在这里我调用 $ item file_id 来查找图片

public function photo(){
       return $this->belongsTo('App\Models\CRM_STAFF\Staff_files', 'file_id');
  }
我在模型中拥有的

可连接到其他模型以使用此功能

 public function file_url(){
        return ($this->_domain).($this->id);
}

但是我得到这样的错误 enter image description here

2 个答案:

答案 0 :(得分:0)

在模型中

添加with('photo')以加载关系。然后检查$item->photo是否不为空

$item = Item::with('photo')->where(...)->get();
return view('yourview', compact('item'));

然后在视图中

<img src="{{!is_null($item->photo) ? $item->photo->file_url() : "http://www.ecmsnews.com/wp-content/themes/nucleare-pro/images/no-image-box.png"}}" width="200" height="100">

答案 1 :(得分:0)

感谢所有想要帮助的人 我找到答案 问题是我用Json_encode保存了所有文件,我只需要解码它