Store form structure in DB

This commit is contained in:
2020-05-06 05:42:55 +01:00
parent 2df5bf144d
commit 8d79345095
3 changed files with 57 additions and 3 deletions

View File

@@ -6,5 +6,11 @@ use Illuminate\Database\Eloquent\Model;
class Form extends Model
{
//
public $fillable = [
'formName',
'formStructure',
'formStatus'
];
}