The trait Thinktomorrow\Chief\Fields\RenderingFields requires the property $model which is not provided by Thinktomorrow\Chief\Settings\SettingFieldsManager.
Loading history...
15
16
/** @var Settings */
17
private $settingsManager;
18
19
public function __construct(Settings $settingsManager)
The method label() does not exist on Thinktomorrow\Chief\Fields\Types\InputField. Since you implemented __call, consider adding a @method annotation.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
The method description() does not exist on Thinktomorrow\Chief\Fields\Types\InputField. Since you implemented __call, consider adding a @method annotation.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
29
->/** @scrutinizer ignore-call */ description('Naam van de applicatie. Dit wordt getoond in o.a. de mail communicatie.')
Loading history...
30
->translatable(['nl' => 'nl', 'fr' => 'fr']),
31
InputField::make('contact.email')
32
->label('Webmaster email')
33
->description('Het emailadres van de webmaster. Hierop ontvang je standaard alle contactnames.'),
34
InputField::make('contact.name')
35
->label('Webmaster naam')
36
->description('Voor en achternaam van de webmaster.'),
37
]);
38
}
39
40
public function fieldValue(Field $field, $locale = null)