dsplos5731 2017-09-12 08:05
浏览 28
已采纳

Laravel 5.4 Eloquent在哪里父母

So I have two models setup, User and Post. Post has a belongsTo setup of user and User has a hasMany setup for posts.

When getting all my posts, I want to make sure the user isn't banned. Banned is an int in the database in a column called ban and I want to make sure it's equal to 0. I originally looped through the posts, checked to make sure user wasn't banned and then pushed it to an array and passed that array to the view which was working fine. However, I now want to enable paginate and it's broken because I'm not passing in the eloquent object.

Here is my eloquent right now:

$posts = Post::where('status', '>', 1)->orderBy('published_date', 'desc')->paginate(10);
  • 写回答

1条回答 默认 最新

  • duandi1919 2017-09-12 09:07
    关注

    Use whereHas()

    $posts = Post::where('status', '>', 1)->whereHas('user', function($q) {
        $q->where('ban', 0);
    })->orderBy('published_date', 'desc')->paginate(10);
    

    I assume, you have user relation on User model from Post model.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部