我有一個帖子與多個圖像。但我只想用PNG格式獲取圖像。 所以我這樣做是後:hasMany Relation Laravel - 沒有得到查詢結果
public function images() {
return $this->hasMany('App\ImagesModel','mapID','id');
}
public function oftype($query)
{
return
$query->where('type', '=', 'PNG');
}
但是,這是行不通的。
$post = Post::find($id);
$post->images()->oftype()->get();
請幫助。
使用添加laravel版本的代碼時,請 – Troyer