1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /*
- * This file is part of ibrand/backend.
- *
- * (c) iBrand <https://www.ibrand.cc>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- return [
- /*
- * Laravel-admin name.
- */
- 'name' => 'iBrand 管理后台',
- /*
- * Logo in admin panel header.
- */
- 'logo' => '<b>iBrand</b> 管理后台',
- /*
- * Mini-logo in admin panel header.
- */
- 'logo-mini' => 'B',
- /*
- * Laravel-admin html title.
- */
- 'title' => 'iBrand 管理后台',
- 'disks' => [
- 'admin' => [
- 'driver' => 'local',
- 'root' => storage_path('app/public/backend'),
- 'url' => env('APP_URL').'/storage/backend',
- 'visibility' => 'public',
- ],
- ],
- ];
|