Browse Source

Update StoryView model

Daniel Supernault 5 years ago
parent
commit
b73823b11a
1 changed files with 2 additions and 0 deletions
  1. 2 0
      app/StoryView.php

+ 2 - 0
app/StoryView.php

@@ -6,6 +6,8 @@ use Illuminate\Database\Eloquent\Model;
 
 class StoryView extends Model
 {
+	public $fillable = ['story_id', 'profile_id'];
+	
 	public function story()
 	{
 		return $this->belongsTo(Story::class);