Getting count from pivot table in laravel eloquent

前端 未结 4 1652
青春惊慌失措
青春惊慌失措 2020-12-17 01:25

I have a many to many relationship for orders and products.



        
4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-17 02:16

    I am using Laravel 5.1 and i am able to accomplish that by doing this

     $photo->posts->count()
    

    And the posts method in Photo model looks like this

    public function posts(){
        return $this->belongsToMany('App\Models\Posts\Post', 'post_photos');
    }
    

提交回复
热议问题