blog.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?php
  2. return [
  3. 'disk' => env('BLOG_DISK', 'public'),
  4. 'system_key' => [
  5. 'blog_name',
  6. 'motto',
  7. 'title',
  8. 'seo_keyword',
  9. 'seo_desc',
  10. 'icp',
  11. 'github_url',
  12. 'weibo_url',
  13. 'disqus_short_name',
  14. 'comment_plugin',
  15. 'statistics_script'
  16. ],
  17. 'menu' => [
  18. [
  19. 'backend.home' => [
  20. 'icon' => 'fa fa-home',
  21. 'name' => 'Home'
  22. ]
  23. ],
  24. [
  25. 'tree_title' => [
  26. 'icon' => 'fa fa-files-o',
  27. 'name' => '文章'
  28. ],
  29. 'backend.article.index' => [
  30. 'icon' => '',
  31. 'name' => '文章管理'
  32. ],
  33. 'backend.article.create' => [
  34. 'icon' => '',
  35. 'name' => '发布文章'
  36. ],
  37. 'backend.category.index' => [
  38. 'icon' => '',
  39. 'name' => '文章分类'
  40. ]
  41. ],
  42. [
  43. 'backend.tag.index' => [
  44. 'icon' => 'fa fa-tags',
  45. 'name' => '标签'
  46. ]
  47. ],
  48. [
  49. 'backend.navigation.index' => [
  50. 'icon' => 'fa fa-navicon',
  51. 'name' => '导航'
  52. ]
  53. ],
  54. [
  55. 'tree_title' => [
  56. 'icon' => 'fa fa-user',
  57. 'name' => '用户'
  58. ],
  59. 'backend.user.index' => [
  60. 'icon' => '',
  61. 'name' => '用户管理'
  62. ],
  63. 'backend.user.create' => [
  64. 'icon' => '',
  65. 'name' => '用户添加'
  66. ]
  67. ],
  68. [
  69. 'tree_title' => [
  70. 'icon' => 'fa fa-cog',
  71. 'name' => '设置'
  72. ],
  73. 'backend.system.index' => [
  74. 'icon' => '',
  75. 'name' => '系统设置'
  76. ],
  77. 'backend.link.index' => [
  78. 'icon' => '',
  79. 'name' => '友情链接'
  80. ],
  81. 'backend.page.index' => [
  82. 'icon' => '',
  83. 'name' => '自定义页面'
  84. ]
  85. ]
  86. ]
  87. ];