laravel-like-comment
laravel-like-comment copied to clipboard
There's any way to Get total comments count as likes ?
i want to list posts with the number of comments count
DB::table('laravellikecomment_comments')->select(DB::raw('count(*) as comment_count, item_id'))->groupBy('item_id')->get()
This will return item_id which is your post id that you provided in @include('laravelLikeComment::comment', ['comment_item_id' => 'post_12']) and comment_count of this item_id