mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-07 00:10:55 +08:00
13 lines
180 B
PHP
13 lines
180 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Language extends NexusModel
|
|
{
|
|
protected $table = 'language';
|
|
|
|
protected $fillable = [
|
|
'lang_name', 'site_lang_folder',
|
|
];
|
|
}
|