root 5 years ago
parent
commit
96d3a27a5b
1 changed files with 12 additions and 0 deletions
  1. 12 0
      app/Models/Tutorial.php

+ 12 - 0
app/Models/Tutorial.php

@@ -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'];
+}