admin.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | dcat-admin name
  6. |--------------------------------------------------------------------------
  7. |
  8. | This value is the name of dcat-admin, This setting is displayed on the
  9. | login page.
  10. |
  11. */
  12. 'name' => 'MTB Admin',
  13. /*
  14. |--------------------------------------------------------------------------
  15. | dcat-admin logo
  16. |--------------------------------------------------------------------------
  17. |
  18. | The logo of all admin pages. You can also set it as an image by using a
  19. | `img` tag, eg '<img src="http://logo-url" alt="Admin logo">'.
  20. |
  21. */
  22. 'logo' => '<img src="/static/images/logo.svg" alt="Admin logo" style="height:auto;width:300px">',
  23. /*
  24. |--------------------------------------------------------------------------
  25. | dcat-admin mini logo
  26. |--------------------------------------------------------------------------
  27. |
  28. | The logo of all admin pages when the sidebar menu is collapsed. You can
  29. | also set it as an image by using a `img` tag, eg
  30. | '<img src="http://logo-url" alt="Admin logo">'.
  31. |
  32. */
  33. 'logo-mini' => '<img src="/static/images/logo-mini.png" alt="Admin logo" style="height:auto;width:50px">',
  34. /*
  35. |--------------------------------------------------------------------------
  36. | dcat-admin favicon
  37. |--------------------------------------------------------------------------
  38. |
  39. */
  40. 'favicon' => '@admin/images/favicon.ico',
  41. /*
  42. |--------------------------------------------------------------------------
  43. | User default avatar
  44. |--------------------------------------------------------------------------
  45. |
  46. | Set a default avatar for newly created users.
  47. |
  48. */
  49. 'default_avatar' => '@admin/images/default-avatar.jpg',
  50. /*
  51. |--------------------------------------------------------------------------
  52. | Login page background image
  53. |--------------------------------------------------------------------------
  54. |
  55. | This value is used to set the background image of login page.
  56. |
  57. */
  58. 'login_background_image' => '@admin/images/login-bg.jpg',
  59. /*
  60. |--------------------------------------------------------------------------
  61. | dcat-admin route settings
  62. |--------------------------------------------------------------------------
  63. |
  64. | The routing configuration of the admin page, including the path prefix,
  65. | the controller namespace, and the default middleware. If you want to
  66. | access through the root path, just set the prefix to empty string.
  67. |
  68. */
  69. 'route' => [
  70. 'domain' => env('ADMIN_ROUTE_DOMAIN'),
  71. 'prefix' => env('ADMIN_ROUTE_PREFIX', 'prime-control'),
  72. 'namespace' => 'App\\Admin\\Controllers',
  73. 'middleware' => ['web', 'admin'],
  74. 'enable_session_middleware' => false,
  75. ],
  76. /*
  77. |--------------------------------------------------------------------------
  78. | dcat-admin install directory
  79. |--------------------------------------------------------------------------
  80. |
  81. | The installation directory of the controller and routing configuration
  82. | files of the administration page. The default is `app/Admin`, which must
  83. | be set before running `artisan admin::install` to take effect.
  84. |
  85. */
  86. 'directory' => app_path('Admin'),
  87. /*
  88. |--------------------------------------------------------------------------
  89. | dcat-admin html title
  90. |--------------------------------------------------------------------------
  91. |
  92. | Html title for all pages.
  93. |
  94. */
  95. 'title' => 'Admin',
  96. /*
  97. |--------------------------------------------------------------------------
  98. | Assets hostname
  99. |--------------------------------------------------------------------------
  100. |
  101. */
  102. 'assets_server' => env('ADMIN_ASSETS_SERVER'),
  103. /*
  104. |--------------------------------------------------------------------------
  105. | Access via `https`
  106. |--------------------------------------------------------------------------
  107. |
  108. | If your page is going to be accessed via https, set it to `true`.
  109. |
  110. */
  111. 'https' => env('ADMIN_HTTPS', false),
  112. /*
  113. |--------------------------------------------------------------------------
  114. | dcat-admin auth setting
  115. |--------------------------------------------------------------------------
  116. |
  117. | Authentication settings for all admin pages. Include an authentication
  118. | guard and a user provider setting of authentication driver.
  119. |
  120. | You can specify a controller for `login` `logout` and other auth routes.
  121. |
  122. */
  123. 'auth' => [
  124. 'enable' => true,
  125. 'controller' => App\Admin\Controllers\AuthController::class,
  126. 'guard' => 'admin',
  127. 'guards' => [
  128. 'admin' => [
  129. 'driver' => 'session',
  130. 'provider' => 'admin',
  131. ],
  132. ],
  133. 'providers' => [
  134. 'admin' => [
  135. 'driver' => 'eloquent',
  136. 'model' => Dcat\Admin\Models\Administrator::class,
  137. ],
  138. ],
  139. // Add "remember me" to login form
  140. 'remember' => true,
  141. // All method to path like: auth/users/*/edit
  142. // or specific method to path like: get:auth/users.
  143. 'except' => [
  144. 'auth/login',
  145. 'auth/logout',
  146. 'captcha',
  147. 'language-switch',
  148. ],
  149. 'enable_session_middleware' => false,
  150. ],
  151. /*
  152. |--------------------------------------------------------------------------
  153. | The global Grid setting
  154. |--------------------------------------------------------------------------
  155. */
  156. 'grid' => [
  157. // The global Grid action display class.
  158. 'grid_action_class' => Dcat\Admin\Grid\Displayers\DropdownActions::class,
  159. // The global Grid batch action display class.
  160. 'batch_action_class' => Dcat\Admin\Grid\Tools\BatchActions::class,
  161. // The global Grid pagination display class.
  162. 'paginator_class' => Dcat\Admin\Grid\Tools\Paginator::class,
  163. 'actions' => [
  164. 'view' => Dcat\Admin\Grid\Actions\Show::class,
  165. 'edit' => Dcat\Admin\Grid\Actions\Edit::class,
  166. 'quick_edit' => Dcat\Admin\Grid\Actions\QuickEdit::class,
  167. 'delete' => Dcat\Admin\Grid\Actions\Delete::class,
  168. 'batch_delete' => Dcat\Admin\Grid\Tools\BatchDelete::class,
  169. ],
  170. // The global Grid column selector setting.
  171. 'column_selector' => [
  172. 'store' => Dcat\Admin\Grid\ColumnSelector\SessionStore::class,
  173. 'store_params' => [
  174. 'driver' => 'file',
  175. ],
  176. ],
  177. ],
  178. /*
  179. |--------------------------------------------------------------------------
  180. | dcat-admin helpers setting.
  181. |--------------------------------------------------------------------------
  182. */
  183. 'helpers' => [
  184. 'enable' => true,
  185. ],
  186. /*
  187. |--------------------------------------------------------------------------
  188. | dcat-admin permission setting
  189. |--------------------------------------------------------------------------
  190. |
  191. | Permission settings for all admin pages.
  192. |
  193. */
  194. 'permission' => [
  195. // Whether enable permission.
  196. 'enable' => true,
  197. // All method to path like: auth/users/*/edit
  198. // or specific method to path like: get:auth/users.
  199. 'except' => [
  200. '/',
  201. 'auth/login',
  202. 'auth/logout',
  203. 'auth/setting'
  204. ],
  205. ],
  206. /*
  207. |--------------------------------------------------------------------------
  208. | dcat-admin menu setting
  209. |--------------------------------------------------------------------------
  210. |
  211. */
  212. 'menu' => [
  213. 'cache' => [
  214. // enable cache or not
  215. 'enable' => false,
  216. 'store' => 'file',
  217. ],
  218. // Whether enable menu bind to a permission.
  219. 'bind_permission' => true,
  220. // Whether enable role bind to menu.
  221. 'role_bind_menu' => true,
  222. // Whether enable permission bind to menu.
  223. 'permission_bind_menu' => true,
  224. 'default_icon' => 'feather icon-circle',
  225. ],
  226. /*
  227. |--------------------------------------------------------------------------
  228. | dcat-admin upload setting
  229. |--------------------------------------------------------------------------
  230. |
  231. | File system configuration for form upload files and images, including
  232. | disk and upload path.
  233. |
  234. */
  235. 'upload' => [
  236. // Disk in `config/filesystem.php`.
  237. 'disk' => 'oss',
  238. // Image and file upload path under the disk above.
  239. 'directory' => [
  240. 'image' => 'images',
  241. 'video' => 'videos',
  242. 'pdf' => 'pdfs',
  243. 'file' => 'files',
  244. ],
  245. //editor tinyMCE上传路径
  246. 'tinymce_directory' => [
  247. 'image' => 'uploads/images',
  248. ],
  249. 'oss_image' => [
  250. 'accept' => 'jpg,png,gif,jpeg,webp,svg',//允许上传的文件类型
  251. 'max_size' => 500, // 上传文件大小限制,单位kB
  252. 'limit' => 20, // 上传文件数量限制
  253. ],
  254. 'oss_video' => [
  255. 'accept' => 'mp4',//允许上传的文件类型
  256. 'max_size' => 50000, // 上传文件大小限制,单位kB
  257. 'limit' => 20, // 上传文件数量限制
  258. ],
  259. 'oss_pdf' => [
  260. 'accept' => 'pdf,dpf,doc,docx,xls,xlsx,ppt,pptx',//允许上传的文件类型
  261. 'max_size' => 50000, // 上传文件大小限制,单位kB
  262. 'limit' => 20, // 上传文件数量限制
  263. ],
  264. ],
  265. /*
  266. |--------------------------------------------------------------------------
  267. | dcat-admin database settings
  268. |--------------------------------------------------------------------------
  269. |
  270. | Here are database settings for dcat-admin builtin model & tables.
  271. |
  272. */
  273. 'database' => [
  274. // Database connection for following tables.
  275. 'connection' => '',
  276. // User tables and model.
  277. 'users_table' => 'admin_users',
  278. 'users_model' => Dcat\Admin\Models\Administrator::class,
  279. // Role table and model.
  280. 'roles_table' => 'admin_roles',
  281. 'roles_model' => Dcat\Admin\Models\Role::class,
  282. // Permission table and model.
  283. 'permissions_table' => 'admin_permissions',
  284. 'permissions_model' => Dcat\Admin\Models\Permission::class,
  285. // Menu table and model.
  286. 'menu_table' => 'admin_menu',
  287. 'menu_model' => Dcat\Admin\Models\Menu::class,
  288. // Pivot table for table above.
  289. 'role_users_table' => 'admin_role_users',
  290. 'role_permissions_table' => 'admin_role_permissions',
  291. 'role_menu_table' => 'admin_role_menu',
  292. 'permission_menu_table' => 'admin_permission_menu',
  293. 'settings_table' => 'admin_settings',
  294. 'extensions_table' => 'admin_extensions',
  295. 'extension_histories_table' => 'admin_extension_histories',
  296. ],
  297. /*
  298. |--------------------------------------------------------------------------
  299. | Application layout
  300. |--------------------------------------------------------------------------
  301. |
  302. | This value is the layout of admin pages.
  303. */
  304. 'layout' => [
  305. // default, blue, blue-light, green
  306. 'color' => 'default',
  307. // sidebar-separate
  308. 'body_class' => [],
  309. 'horizontal_menu' => false,
  310. 'sidebar_collapsed' => false,
  311. // light, primary, dark
  312. 'sidebar_style' => 'light',
  313. 'dark_mode_switch' => false,
  314. // bg-primary, bg-info, bg-warning, bg-success, bg-danger, bg-dark
  315. 'navbar_color' => '',
  316. 'full_screen' => false, // 是否展示全屏按钮
  317. 'home_url'=> env('APP_URL') // 是否展示官网url
  318. ],
  319. /*
  320. |--------------------------------------------------------------------------
  321. | The exception handler class
  322. |--------------------------------------------------------------------------
  323. |
  324. */
  325. 'exception_handler' => Dcat\Admin\Exception\Handler::class,
  326. /*
  327. |--------------------------------------------------------------------------
  328. | Enable default breadcrumb
  329. |--------------------------------------------------------------------------
  330. |
  331. | Whether enable default breadcrumb for every page content.
  332. */
  333. 'enable_default_breadcrumb' => true,
  334. /*
  335. |--------------------------------------------------------------------------
  336. | Extension
  337. |--------------------------------------------------------------------------
  338. */
  339. 'extension' => [
  340. // When you use command `php artisan admin:ext-make` to generate extensions,
  341. // the extension files will be generated in this directory.
  342. 'dir' => base_path('dcat-admin-extensions'),
  343. ],
  344. /*
  345. * 默认分页条数
  346. */
  347. 'per_page'=> 10,
  348. ];