Deploy 1.x docs

This commit is contained in:
github-actions[bot]
2026-03-27 11:03:10 +00:00
parent 3ab8c24b67
commit 7c9f000e60
109 changed files with 273 additions and 239 deletions

View File

@@ -70,15 +70,15 @@ class Project extends Model implements Commentable
}
```
Add the `IsCommenter` trait to your User model:
Add the `CanComment` trait to your User model:
```php [app/Models/User.php]
use Relaticle\Comments\Concerns\IsCommenter;
use Relaticle\Comments\Contracts\Commenter;
use Relaticle\Comments\Concerns\CanComment;
use Relaticle\Comments\Contracts\Commentator;
class User extends Authenticatable implements Commenter
class User extends Authenticatable implements Commentator
{
use IsCommenter;
use CanComment;
}
```