From 7e583ab8e9e336f3f18cbb2df09cc0660f7d3b93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Duli=C3=A7i?= Date: Tue, 19 Jan 2021 17:36:39 +0300 Subject: [PATCH] re-added fillable attributes --- app/Models/Setting/Setting.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/Models/Setting/Setting.php b/app/Models/Setting/Setting.php index b80df4cb0..fee0d913c 100644 --- a/app/Models/Setting/Setting.php +++ b/app/Models/Setting/Setting.php @@ -16,6 +16,13 @@ class Setting extends Eloquent public $timestamps = false; + /** + * Attributes that should be mass-assignable. + * + * @var array + */ + protected $fillable = ['company_id', 'key', 'value']; + /** * The "booted" method of the model. *