首次提交 Laravel 專案
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class tg_comm extends Model
|
||||
{
|
||||
// 显式指定表名
|
||||
protected $table = 'tg_comm';
|
||||
|
||||
// 可批量赋值的字段
|
||||
protected $fillable = [
|
||||
'command',
|
||||
'Instructions',
|
||||
'bot_username',
|
||||
'action',
|
||||
'memo',
|
||||
'dis_play',
|
||||
'manager',
|
||||
'valid',
|
||||
];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user