. * */ namespace Vvveb\CustomField; class Comments extends \Vvveb\System\CustomField { public static $fields = [ 'default_value' => [ 'type' => 'text', 'label' => 'Default Value', 'info' => 'Appears when creating a new post', ], 'placeholder' => [ 'type' => 'text', 'label' => 'Placeholder Text', 'info' => 'Appears within the input', ], 'prepend' => [ 'type' => 'text', 'label' => 'Prepend', 'info' => 'Appears before the input', ], 'append' => [ 'type' => 'text', 'label' => 'Append', 'info' => 'Appears after the input', ], 'character_imit' => [ 'type' => 'text', 'label' => 'Character Limit', 'info' => 'Leave blank for no limit', ], ]; function results() { } }