2021-05-28 02:25:08 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
|
|
|
2025-10-12 03:48:04 +07:00
|
|
|
use App\Models\Traits\NexusActivityLogTrait;
|
|
|
|
|
|
2021-05-28 02:25:08 +08:00
|
|
|
class Icon extends NexusModel
|
|
|
|
|
{
|
2025-10-12 03:48:04 +07:00
|
|
|
use NexusActivityLogTrait;
|
|
|
|
|
|
2021-05-28 02:25:08 +08:00
|
|
|
protected $table = 'caticons';
|
|
|
|
|
|
|
|
|
|
protected $fillable = ['name', 'folder', 'cssfile', 'multilang', 'secondicon', 'designer', 'comment'];
|
|
|
|
|
}
|