diff --git a/src/Fieldtypes/Table.php b/src/Fieldtypes/Table.php index 64a57cdfa61..bf235cc516c 100644 --- a/src/Fieldtypes/Table.php +++ b/src/Fieldtypes/Table.php @@ -10,6 +10,17 @@ class Table extends Fieldtype { protected $categories = ['structured']; + protected function configFieldItems(): array + { + return [ + 'default' => [ + 'display' => __('Default Value'), + 'instructions' => __('statamic::messages.fields_default_instructions'), + 'type' => 'table', + ], + ]; + } + public function toGqlType() { return GraphQL::listOf(GraphQL::type(TableRowType::NAME));