backend.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. /*
  3. * This file is part of ibrand/backend.
  4. *
  5. * (c) iBrand <https://www.ibrand.cc>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. return [
  11. /*
  12. * Laravel-admin name.
  13. */
  14. 'name' => 'iBrand 管理后台',
  15. /*
  16. * Logo in admin panel header.
  17. */
  18. 'logo' => '<b>iBrand</b> 管理后台',
  19. /*
  20. * Mini-logo in admin panel header.
  21. */
  22. 'logo-mini' => 'B',
  23. /*
  24. * Laravel-admin html title.
  25. */
  26. 'title' => 'iBrand 管理后台',
  27. 'disks' => [
  28. 'admin' => [
  29. 'driver' => 'local',
  30. 'root' => storage_path('app/public/backend'),
  31. 'url' => env('APP_URL') . '/storage/backend',
  32. 'visibility' => 'public',
  33. ],
  34. ],
  35. 'sms_login' => env('BACKEND_SMS_LOGIN', false),
  36. 'technical_support' => '果酱社区:https://guojiang.club',
  37. 'copyright' => '果酱社区',
  38. 'scenario' => env('BACKEND_SCENARIO', 'normal')
  39. ];