Browse Source

Update HashtagFollow model

Daniel Supernault 6 years ago
parent
commit
3b457c7afe
1 changed files with 5 additions and 1 deletions
  1. 5 1
      app/HashtagFollow.php

+ 5 - 1
app/HashtagFollow.php

@@ -6,5 +6,9 @@ use Illuminate\Database\Eloquent\Model;
 
 class HashtagFollow extends Model
 {
-    //
+    protected $fillable = [
+    	'user_id',
+    	'profile_id',
+    	'hashtag_id'
+    ];
 }