Unmix return type variables
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
da4841987e
commit
f5cd58e9b7
1 changed files with 4 additions and 3 deletions
|
@ -71,9 +71,10 @@ class CustomFieldsController extends Controller
|
||||||
|
|
||||||
return view('custom_fields.fields.edit', [
|
return view('custom_fields.fields.edit', [
|
||||||
'predefinedFormats' => Helper::predefined_formats(),
|
'predefinedFormats' => Helper::predefined_formats(),
|
||||||
'customFormat' => ''])
|
'customFormat' => '',
|
||||||
->with('fieldsets', $fieldsets)
|
'fieldsets' => $fieldsets,
|
||||||
->with('field', new CustomField());
|
'field' => new CustomField(),
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue