21 lines
385 B
PHP
21 lines
385 B
PHP
<?php
|
|
|
|
namespace Modules\Content\Models;
|
|
|
|
use App\Traits\StatusTrait;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ContentCategory extends Model
|
|
{
|
|
use HasFactory, StatusTrait;
|
|
protected $fillable = [
|
|
'title',
|
|
'desc',
|
|
'order',
|
|
'status',
|
|
];
|
|
protected $appends = ['status_name'];
|
|
|
|
}
|