backend.php 819 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. ];