Files
nexusphp/app/Models/Icon.php

12 lines
208 B
PHP
Raw Normal View History

2021-05-28 02:25:08 +08:00
<?php
namespace App\Models;
class Icon extends NexusModel
{
protected $table = 'caticons';
protected $fillable = ['name', 'folder', 'cssfile', 'multilang', 'secondicon', 'designer', 'comment'];
}