backend.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. /*
  3. * This file is part of ibrand/backend.
  4. *
  5. * (c) 果酱社区 <https://guojiang.club>
  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' => '田知花少儿美术后台',
  15. /*
  16. * Logo in admin panel header.
  17. */
  18. 'logo' => '<b>田知花少儿美术</b>后台',
  19. /*
  20. * Mini-logo in admin panel header.
  21. */
  22. 'logo-mini' => 'T',
  23. /*
  24. * Laravel-admin html title.
  25. */
  26. 'title' => '田知花少儿美术后台',
  27. 'description' => '',
  28. 'disks' => [
  29. 'admin' => [
  30. 'driver' => 'local',
  31. 'root' => storage_path('app/public/backend'),
  32. 'url' => env('APP_URL') . '/storage/backend',
  33. 'visibility' => 'public',
  34. ],
  35. ],
  36. 'sms_login' => env('BACKEND_SMS_LOGIN', false),
  37. 'technical_support' => '田知花少儿美术',
  38. 'copyright' => '田知花少儿美术',
  39. 'scenario' => env('BACKEND_SCENARIO', 'normal')
  40. ];