LayoutRows
Last updated
Last updated
LayoutRows
represent a row in a user defined Layout. LayoutRows
can consist of many LayoutColumns and are always attached to a Layout. There can not be any Element in a LayoutRow
without being attached to a LayoutColumn.
layoutRow
Key | Relation | Type | Relation Field(s) |
---|---|---|---|
Sortable
SoftDeletes
Get a list of all LayoutRows
available in the system.
Definition
GET
/api/layouts/rows
Example Request
Example Response
Show a single LayoutRow
by id
.
Definition
GET
/api/layouts/rows/{id}
Example Request
Example Response
Creates a new LayoutRow
Definition
POST
/api/layouts/rows
Request Keys
Keys with *
are required.
Example Request
Example Response
Update an existing LayoutRow
by id
.
Definition
PUT
/api/layouts/rows/{id}
Request Keys
Keys with *
are required.
Example Request
Example Response
Delete an existing Layout
by id
.
Definition
DELETE
/api/layouts/rows/{id}
Example Request
Example Response
Key | Type | Default | Description |
---|---|---|---|
Key | Type | Default | Description |
---|---|---|---|
layout
Belongs to
layout_id
layoutColumns
Has many
layoutColumn.layout_row_id
title
string
null
The title for the LayoutRow
.
layout_id
*
integer
-
The Layout
this LayoutRow
belongs to.
seperator
boolean
false
Whether there should be a seperator displayed or not.
sort_number
integer
Current highest +1
The index of the LayoutRow
related to the Layout
.
title
string
-
The title for the LayoutRow
.
layout_id
integer
-
The Layout
this LayoutRow
belongs to.
seperator
boolean
-
Whether there should be a seperator displayed or not.
sort_number
integer
-
The index of the LayoutRow
related to the Layout
.