【发布时间】:2021-02-25 14:42:31
【问题描述】:
我正在使用 Beyondcode/laravel-cmets (https://github.com/beyondcode/laravel-comments) 并尝试指定我想从评论员那里获得的列。这是代码:
$comment = $post->comments()->with('commentator', function ($query) {
$query->select('commentator.name', 'commentator.email');
//or $query->select('users.name', 'users.email');
})->latest();
我收到错误提示
Undefined table: 7 ERROR: missing FROM-clause entry for table "commentator" // or users
我该如何解决?谢谢
【问题讨论】:
标签: php laravel eloquent eloquent-relationship