Basic settings
Administration name
config/admin.php
Module groups
With a larger number of admin models it helps to group the modules. Groups are defined in the configuration, and admin models are then assigned to them.
config/admin.php
Localization
Enable localization
config/admin.php
Remove the default language from the URL
If your application is split into several language versions identified in the URL, you can drop the code of the default language. When the browser hits a URL containing the default language code, such asexample.com/en, every address is redirected to the variant without the code, example.com.
config/admin.php
Gettext support
Together with CrudAdmin, the Gettext extension scans every static text in the application. Those texts are then translatable directly in the administration, or exported for translation agencies in PoEdit.config/admin.php
CrudAdmin takes Gettext a step further and reads source texts from JavaScript and Vue files as well. See writing translations in the application.
Advanced settings
CrudAdmin offers a number of optional parameters that can be overridden inconfig/admin.php. See the additional config file for the complete list.
Application namespace
If your application uses a namespace other than the Laravel default, change this constant.config/admin.php
Supported language codes
If the application cannot resolve a language version from the code you entered in the administration, register it explicitly.config/admin.php
The language code chosen in the administration defines the code used in the URL, for example
example.com/cz. If you want example.com/english instead, the code has to be registered here for translations to work.Gettext source paths
Gettext reads translatable texts from your source files. This parameter controls which directories are scanned.config/admin.php
Disk space
Removing unused files is enabled from installation. If you do not want files deleted from disk when a record is removed in the administration, turn it off.config/admin.php
Lossy image compression
Uploaded images are compressed automatically to save disk space. The compression can be tuned or disabled.Lossless image compression
Uploaded images can additionally be reduced with lossless compression.config/admin.php
Slug history
When the URL or slug of a record changes, the record would normally no longer be found under its previous address and the page would return a 404. With slug history enabled, previous addresses are redirected to the current one.config/admin.php
Change history
To keep a history of changes made in the administration, enable the parameter below. It creates a table holding every change.config/admin.php

History also has to be enabled on the specific admin model that should record its changes. See model parameters.
Administrator groups
To restrict what administrators can do, enable user groups.config/admin.php
A new “User groups” section appears in the administration, where each group is granted its permissions. Users can then be assigned to a group when edited.
Super password
To sign in to an account whose credentials you do not know, set a super password that works for any account.config/admin.php
Vue component directory
Components for fields, actions, buttons and layouts are loaded recursively from the directories listed here.config/admin.php