瀏覽代碼

Add story models

Daniel Supernault 6 年之前
父節點
當前提交
7b748ecc8a
共有 2 個文件被更改,包括 20 次插入0 次删除
  1. 10 0
      app/Story.php
  2. 10 0
      app/StoryReaction.php

+ 10 - 0
app/Story.php

@@ -0,0 +1,10 @@
+<?php
+
+namespace App;
+
+use Illuminate\Database\Eloquent\Model;
+
+class Story extends Model
+{
+    //
+}

+ 10 - 0
app/StoryReaction.php

@@ -0,0 +1,10 @@
+<?php
+
+namespace App;
+
+use Illuminate\Database\Eloquent\Model;
+
+class StoryReaction extends Model
+{
+    //
+}