├── backend
├── public
│ ├── favicon.ico
│ ├── robots.txt
│ ├── img
│ │ └── 1.jpg
│ └── .htaccess
├── storage
│ ├── logs
│ │ └── .gitignore
│ ├── debugbar
│ │ └── .gitignore
│ ├── app
│ │ ├── public
│ │ │ └── .gitignore
│ │ └── .gitignore
│ └── framework
│ │ ├── sessions
│ │ └── .gitignore
│ │ ├── testing
│ │ └── .gitignore
│ │ ├── views
│ │ └── .gitignore
│ │ ├── cache
│ │ ├── data
│ │ │ └── .gitignore
│ │ └── .gitignore
│ │ └── .gitignore
├── bootstrap
│ ├── cache
│ │ └── .gitignore
│ └── app.php
├── database
│ ├── .gitignore
│ ├── seeds
│ │ ├── DatabaseSeeder.php
│ │ └── UsersTableSeeder.php
│ ├── migrations
│ │ ├── 2019_06_07_014457_create_table_admin_user_has_roles.php
│ │ ├── 2019_06_07_014208_create_table_admin_roles.php
│ │ ├── 2019_06_07_014412_create_table_admin_role_has_permission.php
│ │ ├── 2019_06_19_004447_create_table_admin_request_log.php
│ │ └── 2019_06_04_000000_create_table_admin_users.php
│ └── factories
│ │ └── UserFactory.php
├── resources
│ ├── js
│ │ ├── router
│ │ │ ├── _import_production.js
│ │ │ └── _import_development.js
│ │ ├── views
│ │ │ ├── permission
│ │ │ │ └── create.vue
│ │ │ ├── deposit
│ │ │ │ └── index.vue
│ │ │ ├── withdrawal
│ │ │ │ └── index.vue
│ │ │ ├── common
│ │ │ │ └── SubPage.vue
│ │ │ ├── notices
│ │ │ │ ├── edit.vue
│ │ │ │ └── create.vue
│ │ │ ├── app.vue
│ │ │ └── default
│ │ │ │ └── index.vue
│ │ ├── icons
│ │ │ ├── svg
│ │ │ │ ├── chart.svg
│ │ │ │ ├── size.svg
│ │ │ │ ├── link.svg
│ │ │ │ ├── component.svg
│ │ │ │ ├── guide.svg
│ │ │ │ ├── money.svg
│ │ │ │ ├── email.svg
│ │ │ │ ├── drag.svg
│ │ │ │ ├── documentation.svg
│ │ │ │ ├── fullscreen.svg
│ │ │ │ ├── lock.svg
│ │ │ │ ├── user.svg
│ │ │ │ ├── excel.svg
│ │ │ │ ├── example.svg
│ │ │ │ ├── star.svg
│ │ │ │ ├── table.svg
│ │ │ │ ├── search.svg
│ │ │ │ ├── password.svg
│ │ │ │ ├── education.svg
│ │ │ │ ├── tab.svg
│ │ │ │ ├── message.svg
│ │ │ │ ├── theme.svg
│ │ │ │ ├── peoples.svg
│ │ │ │ ├── edit.svg
│ │ │ │ ├── nested.svg
│ │ │ │ ├── tree-table.svg
│ │ │ │ ├── eye.svg
│ │ │ │ ├── clipboard.svg
│ │ │ │ ├── list.svg
│ │ │ │ ├── users.svg
│ │ │ │ ├── icon.svg
│ │ │ │ ├── permission.svg
│ │ │ │ ├── international.svg
│ │ │ │ ├── config.svg
│ │ │ │ ├── wechat.svg
│ │ │ │ ├── skill.svg
│ │ │ │ ├── people.svg
│ │ │ │ ├── notice.svg
│ │ │ │ ├── language.svg
│ │ │ │ ├── eye-open.svg
│ │ │ │ ├── withdrawal.svg
│ │ │ │ ├── wechat_login.svg
│ │ │ │ ├── 404.svg
│ │ │ │ ├── zip.svg
│ │ │ │ ├── bug.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── exit-fullscreen.svg
│ │ │ │ └── tree.svg
│ │ │ ├── index.js
│ │ │ └── svgo.yml
│ │ ├── api
│ │ │ ├── orders.js
│ │ │ ├── log.js
│ │ │ ├── role.js
│ │ │ ├── notice.js
│ │ │ ├── auth.js
│ │ │ ├── users.js
│ │ │ ├── client.js
│ │ │ ├── permission.js
│ │ │ ├── usergroup.js
│ │ │ ├── config.js
│ │ │ └── admin.js
│ │ ├── layout
│ │ │ ├── components
│ │ │ │ ├── index.js
│ │ │ │ ├── Sidebar
│ │ │ │ │ ├── Item.vue
│ │ │ │ │ ├── Link.vue
│ │ │ │ │ └── FixiOSBug.js
│ │ │ │ └── AppMain.vue
│ │ │ └── mixin
│ │ │ │ └── ResizeHandler.js
│ │ ├── directive
│ │ │ └── permission
│ │ │ │ ├── index.js
│ │ │ │ └── permission.js
│ │ ├── utils
│ │ │ └── validate.js
│ │ ├── store
│ │ │ ├── getters.js
│ │ │ ├── modules
│ │ │ │ ├── settings.js
│ │ │ │ ├── permission.js
│ │ │ │ └── app.js
│ │ │ └── index.js
│ │ ├── components
│ │ │ ├── Tinymce
│ │ │ │ ├── toolbar.js
│ │ │ │ ├── plugins.js
│ │ │ │ └── dynamicLoadScript.js
│ │ │ ├── Screenfull
│ │ │ │ └── index.vue
│ │ │ └── Hamburger
│ │ │ │ └── index.vue
│ │ ├── bootstrap.js
│ │ └── settings.js
│ ├── sass
│ │ ├── app.scss
│ │ ├── variables.scss
│ │ ├── element-variables.scss
│ │ ├── transition.scss
│ │ ├── element-ui.scss
│ │ └── mixin.scss
│ ├── lang
│ │ ├── zh_cn
│ │ │ └── auth.php
│ │ └── en
│ │ │ ├── pagination.php
│ │ │ ├── auth.php
│ │ │ └── passwords.php
│ └── views
│ │ ├── auth
│ │ └── verify.blade.php
│ │ ├── index.blade.php
│ │ └── wechat.blade.php
├── tests
│ ├── TestCase.php
│ ├── Unit
│ │ └── ExampleTest.php
│ ├── Feature
│ │ └── ExampleTest.php
│ └── CreatesApplication.php
├── .styleci.yml
├── .gitignore
├── .babelrc
├── app
│ ├── Http
│ │ ├── Middleware
│ │ │ ├── EncryptCookies.php
│ │ │ ├── CheckForMaintenanceMode.php
│ │ │ ├── TrimStrings.php
│ │ │ ├── TrustProxies.php
│ │ │ ├── VerifyCsrfToken.php
│ │ │ └── RedirectIfAuthenticated.php
│ │ ├── Controllers
│ │ │ ├── HomeController.php
│ │ │ ├── Controller.php
│ │ │ ├── Auth
│ │ │ │ ├── ForgotPasswordController.php
│ │ │ │ ├── ResetPasswordController.php
│ │ │ │ └── VerificationController.php
│ │ │ └── OrdersController.php
│ │ └── Requests
│ │ │ ├── CommonIndexRequest.php
│ │ │ └── ClientCreateRequest.php
│ ├── Providers
│ │ ├── BroadcastServiceProvider.php
│ │ ├── AppServiceProvider.php
│ │ ├── EventServiceProvider.php
│ │ └── AuthServiceProvider.php
│ ├── Console
│ │ └── Kernel.php
│ ├── Helpers
│ │ └── function.php
│ ├── Events
│ │ └── NotifyEvent.php
│ └── Jobs
│ │ └── RefreshConfig.php
├── routes
│ ├── api.php
│ ├── console.php
│ ├── channels.php
│ └── web.php
├── server.php
├── laravel-echo-server.json
├── .env.example
├── config
│ ├── view.php
│ ├── services.php
│ ├── hashing.php
│ └── broadcasting.php
├── phpunit.xml
└── artisan
├── frontend-api
├── public
│ ├── favicon.ico
│ ├── robots.txt
│ └── .htaccess
├── storage
│ ├── logs
│ │ └── .gitignore
│ ├── app
│ │ ├── public
│ │ │ └── .gitignore
│ │ └── .gitignore
│ └── framework
│ │ ├── sessions
│ │ └── .gitignore
│ │ ├── testing
│ │ └── .gitignore
│ │ ├── views
│ │ └── .gitignore
│ │ ├── cache
│ │ ├── data
│ │ │ └── .gitignore
│ │ └── .gitignore
│ │ └── .gitignore
├── bootstrap
│ ├── cache
│ │ └── .gitignore
│ └── app.php
├── database
│ ├── .gitignore
│ ├── seeds
│ │ └── DatabaseSeeder.php
│ ├── migrations
│ │ ├── 2014_10_12_100000_create_password_resets_table.php
│ │ ├── 2019_08_19_000000_create_failed_jobs_table.php
│ │ └── 2014_10_12_000000_create_users_table.php
│ └── factories
│ │ └── UserFactory.php
├── .gitattributes
├── .gitignore
├── tests
│ ├── TestCase.php
│ ├── Unit
│ │ └── ExampleTest.php
│ ├── Feature
│ │ └── ExampleTest.php
│ └── CreatesApplication.php
├── .editorconfig
├── app
│ ├── Http
│ │ ├── Middleware
│ │ │ ├── EncryptCookies.php
│ │ │ ├── CheckForMaintenanceMode.php
│ │ │ ├── TrimStrings.php
│ │ │ ├── TrustProxies.php
│ │ │ ├── Authenticate.php
│ │ │ ├── VerifyCsrfToken.php
│ │ │ ├── RedirectIfAuthenticated.php
│ │ │ └── EnableCrossRequestMiddleware.php
│ │ └── Controllers
│ │ │ ├── TestController.php
│ │ │ ├── PaymentController.php
│ │ │ ├── UserController.php
│ │ │ ├── Controller.php
│ │ │ └── Auth
│ │ │ ├── ForgotPasswordController.php
│ │ │ ├── ResetPasswordController.php
│ │ │ └── VerificationController.php
│ ├── Providers
│ │ ├── BroadcastServiceProvider.php
│ │ ├── AppServiceProvider.php
│ │ ├── AuthServiceProvider.php
│ │ └── EventServiceProvider.php
│ └── Console
│ │ └── Kernel.php
├── resources
│ ├── lang
│ │ ├── zh_cn
│ │ │ └── auth.php
│ │ └── en
│ │ │ ├── pagination.php
│ │ │ ├── auth.php
│ │ │ └── passwords.php
│ └── views
│ │ └── index.blade.php
├── routes
│ ├── web.php
│ ├── channels.php
│ ├── api.php
│ └── console.php
├── server.php
├── .env.example
├── config
│ ├── services.php
│ ├── view.php
│ ├── hashing.php
│ └── broadcasting.php
└── phpunit.xml
├── frontend-web
├── .env
├── public
│ ├── favicon.ico
│ ├── img
│ │ ├── index-bg.jpg
│ │ ├── ico
│ │ │ ├── ico-lock.png
│ │ │ ├── ico-user.png
│ │ │ └── loginbico.png
│ │ └── m
│ │ │ └── login_bg_s.jpg
│ └── index.html
├── src
│ ├── assets
│ │ ├── logo.png
│ │ └── css
│ │ │ └── reset.css
│ ├── store
│ │ ├── getters.js
│ │ └── index.js
│ ├── api
│ │ ├── test.js
│ │ └── user.js
│ ├── views-web
│ │ ├── App.vue
│ │ └── index
│ │ │ └── Index.vue
│ ├── main-web.js
│ ├── main-h5.js
│ └── views-h5
│ │ ├── App.vue
│ │ └── index
│ │ └── Index.vue
├── .gitignore
├── README.md
├── babel.config.js
└── package.json
├── doc
└── images
│ └── index.png
├── .gitattributes
├── common
└── Models
│ ├── Clients.php
│ ├── Config.php
│ ├── UserGroup.php
│ ├── AdminUserHasRole.php
│ ├── Orders.php
│ ├── Notices.php
│ ├── AdminRoleHasPermission.php
│ ├── AdminLoginLog.php
│ ├── AdminRequestLog.php
│ ├── AdminRolePermissions.php
│ ├── Users.php
│ └── AdminRoles.php
└── .editorconfig
/backend/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/frontend-api/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/backend/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/backend/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/backend/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/backend/storage/debugbar/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/frontend-api/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/backend/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite
2 | *.sqlite-journal
3 |
--------------------------------------------------------------------------------
/backend/storage/app/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/frontend-api/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/frontend-api/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/backend/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/backend/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/backend/storage/framework/testing/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/backend/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/frontend-api/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite
2 | *.sqlite-journal
3 |
--------------------------------------------------------------------------------
/frontend-api/storage/app/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/backend/storage/framework/cache/data/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/frontend-api/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/frontend-api/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/frontend-api/storage/framework/testing/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/frontend-api/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/frontend-web/.env:
--------------------------------------------------------------------------------
1 | VUE_APP_DOMAIN=http://frontend-api.laravel_admin.me
2 |
--------------------------------------------------------------------------------
/backend/storage/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !data/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/frontend-api/storage/framework/cache/data/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/frontend-api/storage/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !data/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/doc/images/index.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/auroraruanjian/laravel-admin/HEAD/doc/images/index.png
--------------------------------------------------------------------------------
/backend/public/img/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/auroraruanjian/laravel-admin/HEAD/backend/public/img/1.jpg
--------------------------------------------------------------------------------
/backend/resources/js/router/_import_production.js:
--------------------------------------------------------------------------------
1 | module.exports = file => () => import('@/views/' + file + '.vue')
--------------------------------------------------------------------------------
/frontend-web/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/auroraruanjian/laravel-admin/HEAD/frontend-web/public/favicon.ico
--------------------------------------------------------------------------------
/frontend-web/src/assets/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/auroraruanjian/laravel-admin/HEAD/frontend-web/src/assets/logo.png
--------------------------------------------------------------------------------
/frontend-web/public/img/index-bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/auroraruanjian/laravel-admin/HEAD/frontend-web/public/img/index-bg.jpg
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | *.css linguist-vendored
3 | *.scss linguist-vendored
4 | *.js linguist-vendored
5 | CHANGELOG.md export-ignore
6 |
--------------------------------------------------------------------------------
/frontend-web/public/img/ico/ico-lock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/auroraruanjian/laravel-admin/HEAD/frontend-web/public/img/ico/ico-lock.png
--------------------------------------------------------------------------------
/frontend-web/public/img/ico/ico-user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/auroraruanjian/laravel-admin/HEAD/frontend-web/public/img/ico/ico-user.png
--------------------------------------------------------------------------------
/frontend-web/public/img/ico/loginbico.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/auroraruanjian/laravel-admin/HEAD/frontend-web/public/img/ico/loginbico.png
--------------------------------------------------------------------------------
/frontend-web/public/img/m/login_bg_s.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/auroraruanjian/laravel-admin/HEAD/frontend-web/public/img/m/login_bg_s.jpg
--------------------------------------------------------------------------------
/backend/resources/js/router/_import_development.js:
--------------------------------------------------------------------------------
1 | module.exports = file => require('@/views/' + file + '.vue').default // vue-loader at least v13.0.0+
--------------------------------------------------------------------------------
/frontend-api/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | *.css linguist-vendored
3 | *.scss linguist-vendored
4 | *.js linguist-vendored
5 | CHANGELOG.md export-ignore
6 |
--------------------------------------------------------------------------------
/backend/storage/framework/.gitignore:
--------------------------------------------------------------------------------
1 | config.php
2 | routes.php
3 | schedule-*
4 | compiled.php
5 | services.json
6 | events.scanned.php
7 | routes.scanned.php
8 | down
9 |
--------------------------------------------------------------------------------
/frontend-api/storage/framework/.gitignore:
--------------------------------------------------------------------------------
1 | config.php
2 | routes.php
3 | schedule-*
4 | compiled.php
5 | services.json
6 | events.scanned.php
7 | routes.scanned.php
8 | down
9 |
--------------------------------------------------------------------------------
/frontend-web/src/store/getters.js:
--------------------------------------------------------------------------------
1 | const getters = {
2 | username: state => state.user.username,
3 | nickname: state => state.user.nickname,
4 | }
5 |
6 | export default getters
7 |
--------------------------------------------------------------------------------
/frontend-web/src/api/test.js:
--------------------------------------------------------------------------------
1 | import fetch from '@/utils/fetch'
2 |
3 | export function getTest() {
4 | return fetch({
5 | url: 'test',
6 | method: 'get',
7 | });
8 | }
9 |
--------------------------------------------------------------------------------
/backend/resources/js/views/permission/create.vue:
--------------------------------------------------------------------------------
1 |
2 |
{{$desc}}
23 |
4 |
4 |