【发布时间】:2017-08-27 16:52:57
【问题描述】:
我有两个数据库表:
帖子
$table->increments('id');
$table->integer('country_id')->unsigned();
$table->foreign('country_id')->references('id')->on('countries');
国家
$table->increments('id');
$table->string('name', 70);
我使用 laravel 作为后端。现在我想为我的前端实现过滤数据。所以用户可以选择一个国家名称,laravel 应该只回复具有指定国家名称的帖子的请求。
如何将此条件添加到现有的分页查询中?我试过这个:
$query = app(Post::class)->with('country')->newQuery();
// ...
if ($request->exists('country')) {
$query->where('country.name', $request->country);
}
// ...
...导致以下错误:
Column not found: 1054 Unknown column 'country.name' in 'where clause' (SQL: select count(*) as aggregate from `posts` where `country`.`name` = Albania)
【问题讨论】:
标签: php laravel laravel-5 eloquent eager-loading