17 lines
293 B
PHP
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;
|
|
|
|
}
|