我如何在 laravel 中使用关系?

how can i use relationship in laravel?

我的架构如下:

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();

但是不行,谁能帮帮我?谢谢你的时间。

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

$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();