فهرست منبع

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
+{
+    //
+}