distributor.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  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' => 'Distributor 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' => null,
  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. | dcat-admin route settings
  53. |--------------------------------------------------------------------------
  54. |
  55. | The routing configuration of the admin page, including the path prefix,
  56. | the controller namespace, and the default middleware. If you want to
  57. | access through the root path, just set the prefix to empty string.
  58. |
  59. */
  60. 'route' => [
  61. 'domain' => env('ADMIN_ROUTE_DOMAIN'),
  62. 'prefix' => 'dist',
  63. 'namespace' => 'App\\Distributor\\Controllers',
  64. 'middleware' => ['web', 'admin','distauth'],
  65. 'enable_session_middleware' => false,
  66. ],
  67. /*
  68. |--------------------------------------------------------------------------
  69. | dcat-admin install directory
  70. |--------------------------------------------------------------------------
  71. |
  72. | The installation directory of the controller and routing configuration
  73. | files of the administration page. The default is `app/Admin`, which must
  74. | be set before running `artisan admin::install` to take effect.
  75. |
  76. */
  77. 'directory' => app_path('Distributor'),
  78. /*
  79. |--------------------------------------------------------------------------
  80. | dcat-admin html title
  81. |--------------------------------------------------------------------------
  82. |
  83. | Html title for all pages.
  84. |
  85. */
  86. 'title' => 'Distributor',
  87. /*
  88. |--------------------------------------------------------------------------
  89. | Assets hostname
  90. |--------------------------------------------------------------------------
  91. |
  92. */
  93. 'assets_server' => env('ADMIN_ASSETS_SERVER'),
  94. /*
  95. |--------------------------------------------------------------------------
  96. | Access via `https`
  97. |--------------------------------------------------------------------------
  98. |
  99. | If your page is going to be accessed via https, set it to `true`.
  100. |
  101. */
  102. 'https' => env('ADMIN_HTTPS', false),
  103. /*
  104. |--------------------------------------------------------------------------
  105. | dcat-admin auth setting
  106. |--------------------------------------------------------------------------
  107. |
  108. | Authentication settings for all admin pages. Include an authentication
  109. | guard and a user provider setting of authentication driver.
  110. |
  111. | You can specify a controller for `login` `logout` and other auth routes.
  112. |
  113. */
  114. 'auth' => [
  115. 'enable' => true,
  116. 'controller' => App\Distributor\Controllers\AuthController::class,
  117. 'guard' => 'distributor',
  118. 'guards' => [
  119. 'distributor' => [
  120. 'driver' => 'session',
  121. 'provider' => 'distributor',
  122. ],
  123. ],
  124. 'providers' => [
  125. 'distributor' => [
  126. 'driver' => 'eloquent',
  127. 'model' => Dcat\Admin\Models\Administrator::class,
  128. ],
  129. ],
  130. // Add "remember me" to login form
  131. 'remember' => true,
  132. // All method to path like: auth/users/*/edit
  133. // or specific method to path like: get:auth/users.
  134. 'except' => [
  135. 'auth/login',
  136. 'auth/logout',
  137. 'captcha',
  138. 'language-switch'
  139. ],
  140. ],
  141. /*
  142. |--------------------------------------------------------------------------
  143. | The global Grid setting
  144. |--------------------------------------------------------------------------
  145. */
  146. 'grid' => [
  147. // The global Grid action display class.
  148. 'grid_action_class' => Dcat\Admin\Grid\Displayers\DropdownActions::class,
  149. // The global Grid batch action display class.
  150. 'batch_action_class' => Dcat\Admin\Grid\Tools\BatchActions::class,
  151. // The global Grid pagination display class.
  152. 'paginator_class' => Dcat\Admin\Grid\Tools\Paginator::class,
  153. 'actions' => [
  154. 'view' => Dcat\Admin\Grid\Actions\Show::class,
  155. 'edit' => Dcat\Admin\Grid\Actions\Edit::class,
  156. 'quick_edit' => Dcat\Admin\Grid\Actions\QuickEdit::class,
  157. 'delete' => Dcat\Admin\Grid\Actions\Delete::class,
  158. 'batch_delete' => Dcat\Admin\Grid\Tools\BatchDelete::class,
  159. ],
  160. // The global Grid column selector setting.
  161. 'column_selector' => [
  162. 'store' => Dcat\Admin\Grid\ColumnSelector\SessionStore::class,
  163. 'store_params' => [
  164. 'driver' => 'file',
  165. ],
  166. ],
  167. ],
  168. /*
  169. |--------------------------------------------------------------------------
  170. | dcat-admin helpers setting.
  171. |--------------------------------------------------------------------------
  172. */
  173. 'helpers' => [
  174. 'enable' => true,
  175. ],
  176. /*
  177. |--------------------------------------------------------------------------
  178. | dcat-admin permission setting
  179. |--------------------------------------------------------------------------
  180. |
  181. | Permission settings for all admin pages.
  182. |
  183. */
  184. 'permission' => [
  185. // Whether enable permission.
  186. 'enable' => true,
  187. // All method to path like: auth/users/*/edit
  188. // or specific method to path like: get:auth/users.
  189. 'except' => [
  190. '/',
  191. 'auth/login',
  192. 'auth/logout',
  193. 'auth/setting',
  194. ],
  195. ],
  196. /*
  197. |--------------------------------------------------------------------------
  198. | dcat-admin menu setting
  199. |--------------------------------------------------------------------------
  200. |
  201. */
  202. 'menu' => [
  203. 'cache' => [
  204. // enable cache or not
  205. 'enable' => false,
  206. 'store' => 'file',
  207. ],
  208. // Whether enable menu bind to a permission.
  209. 'bind_permission' => true,
  210. // Whether enable role bind to menu.
  211. 'role_bind_menu' => true,
  212. // Whether enable permission bind to menu.
  213. 'permission_bind_menu' => true,
  214. 'default_icon' => 'feather icon-circle',
  215. ],
  216. /*
  217. |--------------------------------------------------------------------------
  218. | dcat-admin upload setting
  219. |--------------------------------------------------------------------------
  220. |
  221. | File system configuration for form upload files and images, including
  222. | disk and upload path.
  223. |
  224. */
  225. 'upload' => [
  226. // Disk in `config/filesystem.php`.
  227. 'disk' => 'oss',
  228. // Image and file upload path under the disk above.
  229. 'directory' => [
  230. 'image' => 'dist_images',
  231. 'file' => 'dist_files',
  232. ],
  233. //tinymce编辑器上传图片路径
  234. 'tinymce_directory' => [
  235. 'image' => 'uploads/images',
  236. ],
  237. //可视在线编辑器上传图片路径
  238. 'gjs_directory' => [
  239. 'image' => 'uploads/images',
  240. ],
  241. 'oss_image' => [
  242. 'accept' => 'jpg,png,gif,jpeg,webp,svg',//允许上传的文件类型
  243. 'max_size' => 500, // 上传文件大小限制,单位kB
  244. 'limit' => 20, // 上传文件数量限制
  245. ],
  246. ],
  247. /*
  248. |--------------------------------------------------------------------------
  249. | dcat-admin database settings
  250. |--------------------------------------------------------------------------
  251. |
  252. | Here are database settings for dcat-admin builtin model & tables.
  253. |
  254. */
  255. 'database' => [
  256. // Database connection for following tables.
  257. 'connection' => '',
  258. // User tables and model.
  259. 'users_table' => 'dist_admin_users',
  260. 'users_model' => Dcat\Admin\Models\Administrator::class,
  261. // Role table and model.
  262. 'roles_table' => 'dist_admin_roles',
  263. 'roles_model' => Dcat\Admin\Models\Role::class,
  264. // Permission table and model.
  265. 'permissions_table' => 'dist_admin_permissions',
  266. 'permissions_model' => Dcat\Admin\Models\Permission::class,
  267. // Menu table and model.
  268. 'menu_table' => 'dist_admin_menu',
  269. 'menu_model' => App\Models\DistAdminMenu::class,
  270. // Pivot table for table above.
  271. 'role_users_table' => 'dist_admin_role_users',
  272. 'role_permissions_table' => 'dist_admin_role_permissions',
  273. 'role_menu_table' => 'dist_admin_role_menu',
  274. 'permission_menu_table' => 'dist_admin_permission_menu',
  275. 'settings_table' => 'admin_settings',
  276. 'extensions_table' => 'admin_extensions',
  277. 'extension_histories_table' => 'admin_extension_histories',
  278. ],
  279. /*
  280. |--------------------------------------------------------------------------
  281. | Application layout
  282. |--------------------------------------------------------------------------
  283. |
  284. | This value is the layout of admin pages.
  285. */
  286. 'layout' => [
  287. // default, blue, blue-light, green
  288. 'color' => 'default',
  289. // sidebar-separate
  290. 'body_class' => [],
  291. 'horizontal_menu' => false,
  292. 'sidebar_collapsed' => false,
  293. // light, primary, dark
  294. 'sidebar_style' => 'light',
  295. 'dark_mode_switch' => false,
  296. // bg-primary, bg-info, bg-warning, bg-success, bg-danger, bg-dark
  297. 'navbar_color' => '',
  298. ],
  299. /*
  300. |--------------------------------------------------------------------------
  301. | The exception handler class
  302. |--------------------------------------------------------------------------
  303. |
  304. */
  305. 'exception_handler' => Dcat\Admin\Exception\Handler::class,
  306. /*
  307. |--------------------------------------------------------------------------
  308. | Enable default breadcrumb
  309. |--------------------------------------------------------------------------
  310. |
  311. | Whether enable default breadcrumb for every page content.
  312. */
  313. 'enable_default_breadcrumb' => true,
  314. /*
  315. * 默认分页条数
  316. */
  317. 'per_page'=> 10,
  318. /*
  319. |--------------------------------------------------------------------------
  320. | 多应用
  321. |--------------------------------------------------------------------------
  322. */
  323. 'multi_app' => [
  324. // 与新应用的配置文件名称一致
  325. // 设置为true启用,false则是停用
  326. 'distributor' => true,
  327. ],
  328. ];