Labels and help texts

required
The label of the field in the form, the column title in the listing and the header in exports. A field without a name is not offered in the listing search.name:Product name
A description rendered as small text below the field.title:Shown on the invoice
Placed inside the field while it is empty. Falls back to the field name. For a checkbox it is the text next to the box.placeholder:Enter the phone number as +421 xxx xxx xxx
A tooltip displayed when hovering the field.tooltip:Visible on the public product page
name, title and placeholder use literal gettext source messages, for example name:Cena. Laravel translation keys such as catalog.fields.price or admin::admin.key are no longer resolved. All labels, including tooltip and column_name, are also collected for Gettext translations.

Form helpers

Displays a length/max character counter below the input. Combine it with max.name:Perex|type:text|max:160|counter
The height of an editor field in pixels.name:Content|type:editor|editor_height:400

Listing table

A different column title in the listing and in the table export than the field label in the form. It wins over the columns.{key}.name model setting.column_name:Price
The character limit of the value in the listing table. The full value is always loaded, it is shortened in the table only. limit:0 disables shortening, text fields then keep their line breaks. The default is 40 characters, or 20 when the table has 5 or more columns.limit:80
The default ordering of the listing by this column, used when the orderBy model setting is not set. Always give the direction.orderBy:asc or orderBy:desc
Shows the column in the listing by default even when the field is hidden. It also adds a belongsToMany relation, which has no database column, to the listing.name:Warehouses|belongsToMany:warehouses,name|column_visible
Loads the value of a hidden field into the listing rows without showing the column, so a column component or a button can use it.name:Carton|belongsTo:cartons,:ean|hidden|column_present
Turns the cell into an inline input. A change saves only this column and is validated by the rules of the field.name:Price|type:integer|required|column_editable
Excludes the column from the listing search, both from the column select and from the search in all columns.name:Internal note|type:text|unsearchable
Renders the value of a text column as a clickable tel: link. Fields of type phone are always rendered as a link.name:Phone|phone_link
Hiding columns and removing them from the column chooser is described in visibility and access.