Rename Admin views directory, add some functions on models
This commit is contained in:
16
app/Models/Core/Comment.php
Normal file
16
app/Models/Core/Comment.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user