我如何在laravel中使用关系?

时间:2016-08-28 23:11:28

标签: php laravel-5.1

我的架构如下:

channel table:
id int unsigned primary key auto increment,
name varchar(30) not null,
...

category table:
id int unsigned primary key auto increment,
channel_id int unsigned index,
name varchar(30) not null,
...

article table:
id int unsigned primary key auto increment,
category_id int unsigned index,
title varchar(90) not null,
content text not null,
...

因此,每篇文章都属于特定类别,该类别属于特定渠道。

我的问题是:

如何使用类别名称和频道名称搜索所有文章(我的代码中已准备好关系)?

我试过了

$articles = App\Article::latest()->with('category')->with('channel')->get();

但它不起作用,任何可以帮助我的人?谢谢你的时间。

1 个答案:

答案 0 :(得分:0)

如果你想搜索相关的表,你应该使用这样的连接:

$articles = App\Article::latest()
    ->select('article.*')
    ->join('category', 'category.id', '=', 'category_id')
    ->join('channel', 'channel.id', '=', 'channel_id')
    ->where('category.name', 'LIKE', "%{$name}%")
    ->orWhere('channel.name', 'LIKE', "%{$name}%")
    ->groupBy('article.id')
    ->get();