Files
nexusphp/app/Models/Category.php

12 lines
199 B
PHP
Raw Normal View History

2021-05-15 19:29:44 +08:00
<?php
namespace App\Models;
class Category extends NexusModel
{
2021-05-20 23:30:34 +08:00
protected $table = 'categories';
2021-05-15 19:29:44 +08:00
2021-05-20 23:30:34 +08:00
protected $fillable = ['mode', 'name', 'class_name', 'image', 'sort_index', 'icon_id'];
2021-05-15 19:29:44 +08:00
}