Pekka Gaiser
Pekka Gaiser
## WHY See #4901 ### BEFORE - What was wrong? What was happening before this PR? The "create" and "edit" pages had their headings set to the model plural (e.g....
**Describe the bug** The expected behaviour for a Mega Menu-style navigation menu is that if I click anywhere else on the page, the menu closes. **To Reproduce** Open a Mega...
The examples on the Mega Menu page use the `data-collapse-toggle` attribute which doesn't support closing the menu by clicking anywhere on the page. From where I'm standing, the examples should...
The login page (and other pages that use the `plain.blade.php` template) should have a body CSS class that allows us to target specific pages for styling. To achieve this, I...
When defining fields/columns in a `CrudController`, the usual way to give the field a translated label is: CRUD::field('fieldname')->label(trans('my.dictionary.field_fieldname')); this is arguably a redundancy, because your dictionary entries will usually coincide...
I've searched high and low, but can't find how to integrate a list of items from a relationship in a backpack edit page. The list would have to be able...
The label for the CRUD "create" button is composed of the local translation of the verb "create" and the entity name: ``` {{ trans('backpack::crud.add') }} {{ $crud->entity_name }} ``` Aka:...