feature: knowledge base & surplus switch

This commit is contained in:
Tokumeikoi
2020-10-18 02:51:32 +08:00
parent be3e808551
commit 9041ee2a37
16 changed files with 274 additions and 213 deletions

12
app/Models/Knowledge.php Normal file
View File

@ -0,0 +1,12 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Knowledge extends Model
{
protected $table = 'v2_knowledge';
protected $dateFormat = 'U';
protected $guarded = ['id'];
}