Files
opensem/app/Models/Core/Comment.php
2021-07-27 22:12:58 +02:00

17 lines
293 B
PHP

<?php
namespace App\Models\Core;
use Illuminate\Database\Eloquent\SoftDeletes;
use Venturecraft\Revisionable\RevisionableTrait;
use Wildside\Userstamps\Userstamps;
use BeyondCode\Comments\Comment as parentComment;
class Comment extends parentComment
{
use SoftDeletes, Userstamps;
}