rmrevin / yii2-comments

Yii 2 comments extension
MIT License
52 stars 19 forks source link

comment count #14

Closed bartzushka closed 8 years ago

bartzushka commented 8 years ago

Could you tell me how to get comments count?

rmrevin commented 8 years ago
use rmrevin\yii\module\Comments\models\Comment;

$count = Comment::find()
    ->byEntity('order-1')
    ->count();