Files
nexusphp/app/Models/Language.php
2021-04-28 19:44:48 +08:00

13 lines
180 B
PHP

<?php
namespace App\Models;
class Language extends NexusModel
{
protected $table = 'language';
protected $fillable = [
'lang_name', 'site_lang_folder',
];
}