From da68aa1c266a00417637cd735ac3d5de6a2a3ef4 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Fri, 21 Dec 2018 12:54:27 -0700 Subject: [PATCH] Update Notification model --- app/Notification.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Notification.php b/app/Notification.php index cd4212b15..ae5cd567f 100644 --- a/app/Notification.php +++ b/app/Notification.php @@ -16,6 +16,8 @@ class Notification extends Model */ protected $dates = ['deleted_at']; + protected $fillable = ['*']; + public function actor() { return $this->belongsTo(Profile::class, 'actor_id', 'id');