Explorar el Código

Update Activity model, add fillable attribute

Daniel Supernault hace 5 años
padre
commit
ef575ed483
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  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()
 	{