v2board/app/Models/Log.php

18 lines
335 B
PHP
Raw Normal View History

2023-05-24 01:08:13 +08:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Log extends Model
{
2023-06-05 03:43:34 +08:00
use \App\Scope\FilterScope;
2023-05-24 01:08:13 +08:00
protected $table = 'v2_log';
protected $dateFormat = 'U';
protected $guarded = ['id'];
protected $casts = [
'created_at' => 'timestamp',
'updated_at' => 'timestamp'
];
}