From 21b534579ffe0eb14fe7f2914949ebd0f5c7bbcd Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Fri, 24 May 2019 16:35:07 +0200 Subject: [PATCH] #2783 --- src/app/Magic/Fields/Field.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/Magic/Fields/Field.php b/src/app/Magic/Fields/Field.php index 481ada2..c8d0052 100644 --- a/src/app/Magic/Fields/Field.php +++ b/src/app/Magic/Fields/Field.php @@ -36,7 +36,8 @@ class Field public function getDefaultAttributes() { - return ['type' => 'text', 'column' => false, 'form' => 'both', 'rules' => '']; + return ['type' => 'text', 'column' => false, 'form' => 'both', 'rules' => '' + , 'fillable' => true, 'guarded' => false, 'hidden' => false]; } public function __construct($attributes) -- 2.39.5