remove positioning and nesting from the page index
Connecting additional fields depending on the value in the record when selected in the browser compo
Custom function in a Module Controller
Tiptap WYSIWYG
Sorting by a translation field (ie, title)
title
translation field.
I have a Product
model that is linked to my Brand
model via a brand_id
field, with the relationship in the Product
model as follows:
```...Problem with displaying headers if the site is in two languages

Deploy with deployer and composer update
Issuing rights to upload to the media library
Wysinwyg Editor Starting with source insted of visual

Attribute [singleton] does not exist.

Disable live - draft

output selected blocks on the front in different places
Deleting an entry causes 500 error unless entry is destroyed
Browser route for sub-menu (primary navigation)

How can I edit an indexColumn value?
Get link to file in media library

Browser fields the id of the object doesn't save
InvalidArgumentExceptionUrlBuilder must be passed a string domain
Naming many-to-many tables in Twill and Laravel
products
and a repository reviews
. I wanted to link these , so created a repository I named productReviews
.The migrations are created with the name
product_reviews
and that migration logic is expecting me to use that name (when I try to change it to singular, the migration would fail). When I try to use that table in the CMS something in Twill/Laravel is expecting the name of the table to be product_review
(singular). So I end up having to manually change the name of the table after running the migration. Obviously this doesn't seem quite right. ...