Browse Source

Update Activity model, add fillable attribute

Daniel Supernault 5 years ago
parent
commit
ef575ed483
1 changed files with 1 additions and 0 deletions
  1. 1 0
      app/Activity.php

+ 1 - 0
app/Activity.php

@@ -7,6 +7,7 @@ use Illuminate\Database\Eloquent\Model;
 class Activity extends Model
 {
     protected $dates = ['processed_at'];
+    protected $fillable = ['*'];
 
 	public function toProfile()
 	{