├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── app ├── AdminConfig.php ├── AdminMenu.php ├── AdminPermission.php ├── AdminRole.php ├── AdminUser.php ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── AdministratorController.php │ │ │ ├── ConfigController.php │ │ │ └── IndexController.php │ │ ├── Controller.php │ │ └── InstallController.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── CheckInstall.php │ │ ├── CheckSession.php │ │ ├── EncryptCookies.php │ │ ├── Rbac.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Scopes │ └── SortScope.php ├── User.php └── Utility │ ├── Install.php │ ├── Rbac.php │ └── functions.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php ├── user.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2019_02_25_100017_create_admin_users_table.php │ ├── 2019_02_25_103116_create_admin_roles_table.php │ ├── 2019_02_25_111309_create_admin_role_admin_user.php │ ├── 2019_02_25_112304_create_admin_menus_table.php │ ├── 2019_02_25_112454_create_admin_configs_table.php │ ├── 2019_02_25_113053_create_admin_permissions_table.php │ ├── 2019_02_25_121505_create_admin_menu_admin_role.php │ └── 2019_02_25_122313_create_admin_permission_admin_role.php └── seeds │ ├── AdminConfigsTableSeeder.php │ ├── DatabaseSeeder.php │ └── RbacSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── assets │ ├── css │ │ ├── maps │ │ │ └── style.css.map │ │ └── style.css │ ├── datetimer │ │ ├── assets │ │ │ ├── icons.css │ │ │ ├── icons.eot │ │ │ ├── icons.svg │ │ │ ├── icons.ttf │ │ │ ├── icons.woff │ │ │ ├── localizr.js │ │ │ ├── prettify.css │ │ │ ├── prettify.js │ │ │ ├── reset.css │ │ │ ├── site.css │ │ │ ├── table-of-contents.js │ │ │ └── themer.js │ │ ├── css │ │ │ ├── htmleaf-demo.css │ │ │ └── normalize.css │ │ ├── dist │ │ │ ├── flatpickr.base16_flat.min.css │ │ │ ├── flatpickr.confetti.min.css │ │ │ ├── flatpickr.dark.min.css │ │ │ ├── flatpickr.grapefruit.min.css │ │ │ ├── flatpickr.js │ │ │ ├── flatpickr.material_blue.min.css │ │ │ ├── flatpickr.material_green.min.css │ │ │ ├── flatpickr.material_orange.min.css │ │ │ ├── flatpickr.material_red.min.css │ │ │ ├── flatpickr.min.css │ │ │ └── flatpickr.min.js │ │ ├── fonts │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ └── icomoon.woff │ │ └── src │ │ │ ├── flatpickr.js │ │ │ ├── flatpickr.l10n.ar.js │ │ │ ├── flatpickr.l10n.bg.js │ │ │ ├── flatpickr.l10n.bn.js │ │ │ ├── flatpickr.l10n.cs.js │ │ │ ├── flatpickr.l10n.da.js │ │ │ ├── flatpickr.l10n.de.js │ │ │ ├── flatpickr.l10n.es.js │ │ │ ├── flatpickr.l10n.fa.js │ │ │ ├── flatpickr.l10n.fi.js │ │ │ ├── flatpickr.l10n.fr.js │ │ │ ├── flatpickr.l10n.he.js │ │ │ ├── flatpickr.l10n.hi.js │ │ │ ├── flatpickr.l10n.id.js │ │ │ ├── flatpickr.l10n.it.js │ │ │ ├── flatpickr.l10n.ja.js │ │ │ ├── flatpickr.l10n.ko.js │ │ │ ├── flatpickr.l10n.my.js │ │ │ ├── flatpickr.l10n.nl.js │ │ │ ├── flatpickr.l10n.no.js │ │ │ ├── flatpickr.l10n.pa.js │ │ │ ├── flatpickr.l10n.pl.js │ │ │ ├── flatpickr.l10n.pt.js │ │ │ ├── flatpickr.l10n.ru.js │ │ │ ├── flatpickr.l10n.sq.js │ │ │ ├── flatpickr.l10n.sv.js │ │ │ ├── flatpickr.l10n.tr.js │ │ │ ├── flatpickr.l10n.vn.js │ │ │ ├── flatpickr.l10n.zh.js │ │ │ └── style │ │ │ ├── flatpickr.styl │ │ │ ├── flatpickr_base.styl │ │ │ └── themes │ │ │ ├── base16_flat.styl │ │ │ ├── confetti.styl │ │ │ ├── dark.styl │ │ │ ├── grapefruit.styl │ │ │ ├── material_blue.styl │ │ │ ├── material_green.styl │ │ │ ├── material_orange.styl │ │ │ └── material_red.styl │ ├── fonts │ │ └── Ubuntu │ │ │ ├── Ubuntu-Bold.eot │ │ │ ├── Ubuntu-Bold.ttf │ │ │ ├── Ubuntu-Bold.woff │ │ │ ├── Ubuntu-Bold.woff2 │ │ │ ├── Ubuntu-Light.eot │ │ │ ├── Ubuntu-Light.ttf │ │ │ ├── Ubuntu-Light.woff │ │ │ ├── Ubuntu-Light.woff2 │ │ │ ├── Ubuntu-Medium.eot │ │ │ ├── Ubuntu-Medium.ttf │ │ │ ├── Ubuntu-Medium.woff │ │ │ ├── Ubuntu-Medium.woff2 │ │ │ ├── Ubuntu-Regular.eot │ │ │ ├── Ubuntu-Regular.ttf │ │ │ ├── Ubuntu-Regular.woff │ │ │ └── Ubuntu-Regular.woff2 │ ├── images │ │ ├── dashboard │ │ │ ├── circle.svg │ │ │ ├── img_1.jpg │ │ │ ├── img_2.jpg │ │ │ ├── img_3.jpg │ │ │ └── img_4.jpg │ │ ├── faces-clipart │ │ │ ├── pic-1.png │ │ │ ├── pic-2.png │ │ │ ├── pic-3.png │ │ │ └── pic-4.png │ │ ├── faces │ │ │ ├── face1.jpg │ │ │ ├── face10.jpg │ │ │ ├── face11.jpg │ │ │ ├── face12.jpg │ │ │ ├── face13.jpg │ │ │ ├── face14.jpg │ │ │ ├── face15.jpg │ │ │ ├── face16.jpg │ │ │ ├── face17.jpg │ │ │ ├── face18.jpg │ │ │ ├── face19.jpg │ │ │ ├── face2.jpg │ │ │ ├── face20.jpg │ │ │ ├── face21.jpg │ │ │ ├── face22.jpg │ │ │ ├── face23.jpg │ │ │ ├── face24.jpg │ │ │ ├── face25.jpg │ │ │ ├── face26.jpg │ │ │ ├── face27.jpg │ │ │ ├── face3.jpg │ │ │ ├── face4.jpg │ │ │ ├── face5.jpg │ │ │ ├── face6.jpg │ │ │ ├── face7.jpg │ │ │ ├── face8.jpg │ │ │ └── face9.jpg │ │ ├── favicon.png │ │ ├── logo-mini.svg │ │ └── logo.svg │ ├── js │ │ ├── chart.js │ │ ├── common.js │ │ ├── dashboard.js │ │ ├── file-upload.js │ │ ├── misc.js │ │ └── off-canvas.js │ ├── layer │ │ ├── layer.js │ │ ├── mobile │ │ │ ├── layer.js │ │ │ └── need │ │ │ │ └── layer.css │ │ └── theme │ │ │ └── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── layer.css │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ ├── partials │ │ ├── _footer.html │ │ ├── _navbar.html │ │ └── _sidebar.html │ ├── scss │ │ ├── _background.scss │ │ ├── _demo.scss │ │ ├── _fonts.scss │ │ ├── _footer.scss │ │ ├── _functions.scss │ │ ├── _misc.scss │ │ ├── _navbar.scss │ │ ├── _reset.scss │ │ ├── _sidebar.scss │ │ ├── _typography.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── components │ │ │ ├── _badges.scss │ │ │ ├── _bootstrap-progress.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _checkbox-radio.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _icons.scss │ │ │ ├── _lists.scss │ │ │ ├── _preview.scss │ │ │ └── _tables.scss │ │ ├── landing-screens │ │ │ └── _auth.scss │ │ ├── mixins │ │ │ ├── _animation.scss │ │ │ ├── _background.scss │ │ │ ├── _badges.scss │ │ │ ├── _blockqoute.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ └── _misc.scss │ │ └── style.scss │ ├── vendors │ │ ├── css │ │ │ └── vendor.bundle.base.css │ │ ├── iconfonts │ │ │ └── mdi │ │ │ │ ├── bower.json │ │ │ │ ├── css │ │ │ │ ├── materialdesignicons.css │ │ │ │ ├── materialdesignicons.css.map │ │ │ │ ├── materialdesignicons.min.css │ │ │ │ └── materialdesignicons.min.css.map │ │ │ │ ├── fonts │ │ │ │ ├── materialdesignicons-webfont.eot │ │ │ │ ├── materialdesignicons-webfont.svg │ │ │ │ ├── materialdesignicons-webfont.ttf │ │ │ │ ├── materialdesignicons-webfont.woff │ │ │ │ └── materialdesignicons-webfont.woff2 │ │ │ │ ├── license.md │ │ │ │ ├── package.json │ │ │ │ ├── preview.html │ │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _extras.scss │ │ │ │ ├── _functions.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── materialdesignicons.scss │ │ └── js │ │ │ ├── vendor.bundle.addons.js │ │ │ └── vendor.bundle.base.js │ └── wangEditor │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── .npmignore │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ ├── css │ │ │ ├── wangEditor.css │ │ │ ├── wangEditor.less │ │ │ └── wangEditor.min.css │ │ ├── fonts │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ └── icomoon.woff │ │ └── js │ │ │ ├── lib │ │ │ ├── jquery-1.10.2.min.js │ │ │ └── jquery-2.2.1.js │ │ │ ├── wangEditor.js │ │ │ └── wangEditor.min.js │ │ ├── node_modules │ │ └── formidable │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ ├── file.js │ │ │ ├── incoming_form.js │ │ │ ├── index.js │ │ │ ├── json_parser.js │ │ │ ├── multipart_parser.js │ │ │ ├── octet_parser.js │ │ │ └── querystring_parser.js │ │ │ └── package.json │ │ ├── package.json │ │ ├── server-for-cros.js │ │ ├── server.js │ │ ├── src │ │ ├── css │ │ │ ├── parts │ │ │ │ ├── 010-common.less │ │ │ │ ├── 020-home.less │ │ │ │ ├── 021-fullscreen.less │ │ │ │ ├── 022-sourcecode.less │ │ │ │ ├── 030-menu.less │ │ │ │ ├── 040-txt.less │ │ │ │ ├── 041-txt-content.less │ │ │ │ ├── 050-droplist.less │ │ │ │ ├── 060-droppanel.less │ │ │ │ ├── 070-modal.less │ │ │ │ ├── xxx-font.less │ │ │ │ └── yyy-hljs-github.less │ │ │ ├── wangEditor.css │ │ │ └── wangEditor.less │ │ └── js │ │ │ ├── parts │ │ │ ├── 00100-start.js │ │ │ ├── 00200-E.js │ │ │ ├── 00201-E-fn-init.js │ │ │ ├── 00202-E-fn-api.js │ │ │ ├── 00203-E-fn-selection.js │ │ │ ├── 00204-E-fn-selection-IE.js │ │ │ ├── 00205-E-fn-command-hooks.js │ │ │ ├── 00205-E-fn-command.js │ │ │ ├── 00206-E-fn-dom-selector.js │ │ │ ├── 00207-E-fn-undo-redo.js │ │ │ ├── 0020x-E-fn-user-api.js │ │ │ ├── 00210-MC.js │ │ │ ├── 00211-MC-fn-bind.js │ │ │ ├── 00212-MC-fn-api.js │ │ │ ├── 00220-M.js │ │ │ ├── 00221-M-fn-bind.js │ │ │ ├── 00222-M-fn-api.js │ │ │ ├── 00230-DL.js │ │ │ ├── 00231-DL-fn-bind.js │ │ │ ├── 00232-DL-fn-api.js │ │ │ ├── 00240-DP.js │ │ │ ├── 00241-DP-fn-bind.js │ │ │ ├── 00242-DP-fn-api.js │ │ │ ├── 00250-ML.js │ │ │ ├── 00251-ML-fn-bind.js │ │ │ ├── 00252-ML-fn-api.js │ │ │ ├── 00260-T.js │ │ │ ├── 00261-T-fn-bind.js │ │ │ ├── 00262-T-fn-api.js │ │ │ ├── 00300-E-tool-fn.js │ │ │ ├── 00310-E-lang.js │ │ │ ├── 00400-E-config.js │ │ │ ├── 00401-E-UI.js │ │ │ ├── 00500-editor-default-config-UI.js │ │ │ ├── 00601-editor-add-editor-container.js │ │ │ ├── 00602-editor-add-txt.js │ │ │ ├── 00700-editor-add-menuContainer.js │ │ │ ├── 00800-editor-add-menus.js │ │ │ ├── 00810-editor-add-menu-bold.js │ │ │ ├── 00820-editor-add-menu-underline.js │ │ │ ├── 00830-editor-add-menu-italic.js │ │ │ ├── 00840-editor-add-menu-forecolor.js │ │ │ ├── 00850-editor-add-menu-bgcolor.js │ │ │ ├── 00850-editor-add-menu-strikethrough.js │ │ │ ├── 00860-editor-add-menu-eraser.js │ │ │ ├── 00870-editor-add-menu-source.js │ │ │ ├── 00880-editor-add-menu-quote.js │ │ │ ├── 00890-editor-add-menu-family.js │ │ │ ├── 008a0-editor-add-menu-fontsize.js │ │ │ ├── 008b0-editor-add-menu-head.js │ │ │ ├── 008c1-editor-add-menu-unorder-list.js │ │ │ ├── 008c2-editor-add-menu-order-list.js │ │ │ ├── 008d1-editor-add-menu-align-left.js │ │ │ ├── 008d2-editor-add-menu-align-center.js │ │ │ ├── 008d3-editor-add-menu-align-right.js │ │ │ ├── 008e0-editor-add-menu-link.js │ │ │ ├── 008f0-editor-add-menu-unlink.js │ │ │ ├── 008g0-editor-add-menu-table.js │ │ │ ├── 008h0-editor-add-menu-emotion.js │ │ │ ├── 008i0-editor-add-menu-img.js │ │ │ ├── 008j0-editor-add-menu-video.js │ │ │ ├── 008k0-editor-add-menu-location.js │ │ │ ├── 008lo-editor-add-menu-insertcode.js │ │ │ ├── 008m0-editor-add-menu-undo.js │ │ │ ├── 008n0-editor-add-menu-redo.js │ │ │ ├── 008o0-editor-add-menu-fullscreen.js │ │ │ ├── 00900-render-menus.js │ │ │ ├── 00910-render-menu-container.js │ │ │ ├── 00920-render-txt.js │ │ │ ├── 00930-render-container.js │ │ │ ├── 01000-event-menus.js │ │ │ ├── 01010-event-menuContainer.js │ │ │ ├── 01020-event-txt.js │ │ │ ├── 0p000-upload-img-fn.js │ │ │ ├── 0p010-xhr-upload-img.js │ │ │ ├── 0p011-upload-progress.js │ │ │ ├── 0p020-upload-img-ui.js │ │ │ ├── 0p021-upload-img-h5.js │ │ │ ├── 0p022-upload-img-form.js │ │ │ ├── 0p023-upload-img-paste.js │ │ │ ├── 0p024-drag-upload-img.js │ │ │ ├── 0p030-txt-table-toolbar.js │ │ │ ├── 0p040-txt-img-toolbar.js │ │ │ ├── 0p041-txt-link-toolbar.js │ │ │ ├── 0p050-menu-fixed.js │ │ │ ├── 0p060-custom-menu-indent.js │ │ │ ├── 0p060-custom-menu-lineheight.js │ │ │ ├── 0p070-custom-upload.js │ │ │ ├── 9xxxx-copyright.js │ │ │ └── 9zzzz-end.js │ │ │ └── wangEditor.js │ │ ├── static │ │ ├── emotions │ │ │ ├── default │ │ │ │ ├── 1.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 12.gif │ │ │ │ ├── 13.gif │ │ │ │ ├── 14.gif │ │ │ │ ├── 15.gif │ │ │ │ ├── 16.gif │ │ │ │ ├── 17.gif │ │ │ │ ├── 18.gif │ │ │ │ ├── 19.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 20.gif │ │ │ │ ├── 21.gif │ │ │ │ ├── 22.gif │ │ │ │ ├── 23.gif │ │ │ │ ├── 24.gif │ │ │ │ ├── 25.gif │ │ │ │ ├── 26.gif │ │ │ │ ├── 27.gif │ │ │ │ ├── 28.gif │ │ │ │ ├── 29.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 30.gif │ │ │ │ ├── 31.gif │ │ │ │ ├── 32.gif │ │ │ │ ├── 33.gif │ │ │ │ ├── 34.gif │ │ │ │ ├── 35.gif │ │ │ │ ├── 36.gif │ │ │ │ ├── 37.gif │ │ │ │ ├── 38.gif │ │ │ │ ├── 39.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 40.gif │ │ │ │ ├── 41.gif │ │ │ │ ├── 42.gif │ │ │ │ ├── 43.gif │ │ │ │ ├── 44.gif │ │ │ │ ├── 45.gif │ │ │ │ ├── 46.gif │ │ │ │ ├── 47.gif │ │ │ │ ├── 48.gif │ │ │ │ ├── 49.gif │ │ │ │ ├── 5.gif │ │ │ │ ├── 50.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 8.gif │ │ │ │ └── 9.gif │ │ │ └── jinxing │ │ │ │ ├── 1.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 5.gif │ │ │ │ └── 6.gif │ │ └── highlightjs │ │ │ ├── dark.css │ │ │ ├── github.css │ │ │ └── highlight.pack.js │ │ ├── test │ │ ├── angular │ │ │ └── test-angular.html │ │ ├── bootstrap │ │ │ ├── bs-3.3.5 │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── npm.js │ │ │ └── test-bs-modal.html │ │ ├── custom-menu │ │ │ ├── custom-menu.html │ │ │ └── js │ │ │ │ ├── custom-menu-1.js │ │ │ │ ├── custom-menu-2.js │ │ │ │ ├── custom-menu.js │ │ │ │ └── require-main.js │ │ ├── emotions.data │ │ ├── icomoon │ │ │ ├── Read Me.txt │ │ │ ├── demo-files │ │ │ │ ├── demo.css │ │ │ │ └── demo.js │ │ │ ├── demo.html │ │ │ ├── fonts │ │ │ │ ├── icomoon.eot │ │ │ │ ├── icomoon.svg │ │ │ │ ├── icomoon.ttf │ │ │ │ └── icomoon.woff │ │ │ ├── selection.json │ │ │ └── style.css │ │ ├── index.html │ │ ├── plupload │ │ │ ├── lib │ │ │ │ └── plupload │ │ │ │ │ ├── Moxie.swf │ │ │ │ │ ├── Moxie.xap │ │ │ │ │ └── plupload.full.min.js │ │ │ └── test.html │ │ ├── requirejs │ │ │ ├── js │ │ │ │ ├── main.js │ │ │ │ └── require.js │ │ │ └── test-requirejs.html │ │ ├── seajs │ │ │ ├── js │ │ │ │ ├── jquery-2.2.1-for-seajs.js │ │ │ │ └── sea.js │ │ │ ├── main.js │ │ │ └── test-seajs.html │ │ ├── step-test │ │ │ ├── test1.html │ │ │ └── test2.html │ │ ├── test-createbyelem.html │ │ ├── test-js-head.html │ │ ├── test-lang.html │ │ ├── test-menus.html │ │ ├── test-muti.html │ │ ├── test-style.html │ │ ├── test-uploadfn.html │ │ ├── vue │ │ │ └── test-vue.html │ │ └── z-test.html │ │ └── uploadfiles │ │ └── readme ├── index.php ├── robots.txt ├── uploads │ ├── avatar │ │ ├── 20181031 │ │ │ └── 5bd90252493d1.jpg │ │ └── .gitignore │ ├── config │ │ ├── 20181107 │ │ │ └── 5be269ef937d1.png │ │ └── .gitignore │ └── wangeditor │ │ └── .gitignore └── web.config ├── resources ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── admin │ ├── administrator.blade.php │ ├── administrator_add.blade.php │ ├── administrator_update.blade.php │ ├── config.blade.php │ ├── config_add.blade.php │ ├── config_update.blade.php │ ├── console.blade.php │ ├── edit_info.blade.php │ ├── icon.blade.php │ ├── index.blade.php │ ├── login.blade.php │ ├── menu.blade.php │ ├── menu_add.blade.php │ ├── menu_update.blade.php │ ├── permission.blade.php │ ├── permission_add.blade.php │ ├── permission_update.blade.php │ ├── role.blade.php │ ├── role_add.blade.php │ └── role_update.blade.php │ └── base │ ├── 403.blade.php │ ├── 404.blade.php │ ├── base.blade.php │ └── install.blade.php ├── routes ├── api.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/README.md -------------------------------------------------------------------------------- /app/AdminConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/AdminConfig.php -------------------------------------------------------------------------------- /app/AdminMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/AdminMenu.php -------------------------------------------------------------------------------- /app/AdminPermission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/AdminPermission.php -------------------------------------------------------------------------------- /app/AdminRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/AdminRole.php -------------------------------------------------------------------------------- /app/AdminUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/AdminUser.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/AdministratorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Http/Controllers/Admin/AdministratorController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/ConfigController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Http/Controllers/Admin/ConfigController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Http/Controllers/Admin/IndexController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/InstallController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Http/Controllers/InstallController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckInstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Http/Middleware/CheckInstall.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Http/Middleware/CheckSession.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/Rbac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Http/Middleware/Rbac.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Scopes/SortScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Scopes/SortScope.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/User.php -------------------------------------------------------------------------------- /app/Utility/Install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Utility/Install.php -------------------------------------------------------------------------------- /app/Utility/Rbac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Utility/Rbac.php -------------------------------------------------------------------------------- /app/Utility/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/app/Utility/functions.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woann/yamecent-admin/HEAD/config/session.php -------------------------------------------------------------------------------- /config/user.php: -------------------------------------------------------------------------------- 1 |