Xboard/app/Models/Knowledge.php
2025-01-07 01:20:11 +08:00

18 lines
345 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Knowledge extends Model
{
protected $table = 'v2_knowledge';
protected $dateFormat = 'U';
protected $guarded = ['id'];
protected $casts = [
'show' => 'boolean',
'created_at' => 'timestamp',
'updated_at' => 'timestamp',
];
}