This commit is contained in:
root 2020-01-02 21:39:52 +08:00
parent b8c8335542
commit 96d3a27a5b

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

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