distributor.php 11 KB

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