# Limit comments per user

You can limit the number of comment per user.

### Set Global Limit

```php
// comments.php

limit = 10; // now a user can make only 10 comments for a model. 
```

### Locally

```php
use LakM\Comments\Concerns\Commentable;

class Post extends Model
{
    use Commentable;
    
    $commentLimit = 10;
}
```
