From c7ccb26ffc261cc846bb76d146143ec284742933 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sun, 26 Apr 2020 02:06:48 -0600 Subject: [PATCH] Update ModLog model, add fillable attribute --- app/ModLog.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/ModLog.php b/app/ModLog.php index 0e0b2b5e4..b5e892fc5 100644 --- a/app/ModLog.php +++ b/app/ModLog.php @@ -8,6 +8,8 @@ class ModLog extends Model { protected $visible = ['id']; + protected $fillable = ['*']; + public function admin() { return $this->belongsTo(User::class, 'user_id');