v2board/app/Models/Tutorial.php

13 lines
208 B
PHP
Raw Normal View History

2020-01-02 21:39:52 +08:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Tutorial extends Model
{
protected $table = 'v2_tutorial';
protected $dateFormat = 'U';
protected $guarded = ['id'];
}