Browse Source

Add story models

Daniel Supernault 6 years ago
parent
commit
7b748ecc8a
2 changed files with 20 additions and 0 deletions
  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
+{
+    //
+}