root 5 năm trước cách đây
mục cha
commit
96d3a27a5b
1 tập tin đã thay đổi với 12 bổ sung0 xóa
  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'];
+}