Level 21
Did you try this?
$post = Post::whereUserId(auth::id())->get('id')->count();
i need to count users all posts like
```
$post = Post::whereUserId(auth::id())->get('id');
$postlikes = PostLike::wherePostId($post)->count('post_id);
it's work in foreach. but I am looking for some more convenient way
Please or to participate in this conversation.