Przeglądaj źródła

Add StatusHashtag model

Daniel Supernault 7 lat temu
rodzic
commit
05bf9b7aee
1 zmienionych plików z 10 dodań i 0 usunięć
  1. 10 0
      app/StatusHashtag.php

+ 10 - 0
app/StatusHashtag.php

@@ -0,0 +1,10 @@
+<?php
+
+namespace App;
+
+use Illuminate\Database\Eloquent\Model;
+
+class StatusHashtag extends Model
+{
+    protected $fillable = ['status_id', 'hashtag_id'];
+}