I have a many to many relationship for orders and products.
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'); }