root 5 년 전
부모
커밋
96d3a27a5b
1개의 변경된 파일12개의 추가작업 그리고 0개의 파일을 삭제
  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'];
+}