1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- /*
- * This file is part of ibrand/backend.
- *
- * (c) 果酱社区 <https://guojiang.club>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- return [
- /*
- * Laravel-admin name.
- */
- 'name' => '田知花少儿美术后台',
- /*
- * Logo in admin panel header.
- */
- 'logo' => '<b>田知花少儿美术</b>后台',
- /*
- * Mini-logo in admin panel header.
- */
- 'logo-mini' => 'T',
- /*
- * Laravel-admin html title.
- */
- 'title' => '田知花少儿美术后台',
- 'description' => '',
- 'disks' => [
- 'admin' => [
- 'driver' => 'local',
- 'root' => storage_path('app/public/backend'),
- 'url' => env('APP_URL') . '/storage/backend',
- 'visibility' => 'public',
- ],
- ],
- 'sms_login' => env('BACKEND_SMS_LOGIN', false),
- 'technical_support' => '田知花少儿美术',
- 'copyright' => '田知花少儿美术',
- 'scenario' => env('BACKEND_SCENARIO', 'normal')
- ];
|