123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <?php
-
- return [
-
-
-
-
- 'enabled' => env('CP_ENABLED', true),
-
- 'route' => env('CP_ROUTE', 'cp'),
-
-
-
-
- 'start_page' => 'dashboard',
-
-
-
-
- 'widgets' => [
- 'getting_started',
- ],
-
-
-
-
- 'date_format' => 'Y-m-d',
-
-
-
-
- 'pagination_size' => 50,
-
- 'pagination_size_options' => [10, 25, 50, 100, 500],
-
-
-
-
- 'link_to_docs' => env('STATAMIC_LINK_TO_DOCS', true),
-
-
-
-
- 'support_url' => env('STATAMIC_SUPPORT_URL', 'https://statamic.com/support'),
-
-
-
-
- 'theme' => env('STATAMIC_THEME', 'rad'),
-
-
-
-
- 'custom_cms_name' => env('STATAMIC_CUSTOM_CMS_NAME', 'Statamic'),
-
- 'custom_logo_url' => env('STATAMIC_CUSTOM_LOGO_URL', null),
-
- 'custom_favicon_url' => env('STATAMIC_CUSTOM_FAVICON_URL', null),
-
- 'custom_css_url' => env('STATAMIC_CUSTOM_CSS_URL', null),
-
- ];
|