Files
nexusphp/app/Models/Icon.php
2021-05-28 02:25:08 +08:00

12 lines
208 B
PHP

<?php
namespace App\Models;
class Icon extends NexusModel
{
protected $table = 'caticons';
protected $fillable = ['name', 'folder', 'cssfile', 'multilang', 'secondicon', 'designer', 'comment'];
}