{"id":14974867,"url":"https://github.com/yuxingfei/laravel-admin","last_synced_at":"2025-11-04T11:30:39.391Z","repository":{"id":40646242,"uuid":"265322471","full_name":"yuxingfei/laravel-admin","owner":"yuxingfei","description":"laravel-admin 是基于laravel 7.*的版本和AdminLTE前端样式框架开发的一套通用后台管理系统laravel-admin。里面吸取了很多开源项目的精髓,laravel 7、AdminLte、mews/captcha等,开箱即用，非常灵活。","archived":false,"fork":false,"pushed_at":"2024-08-16T06:40:42.000Z","size":3269,"stargazers_count":45,"open_issues_count":0,"forks_count":22,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-02-08T08:34:40.626Z","etag":null,"topics":["admin","adminlte","laravel","laravel-admin","laravel7","php7"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yuxingfei.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-05-19T17:56:37.000Z","updated_at":"2024-11-03T07:56:08.000Z","dependencies_parsed_at":"2024-08-17T03:16:30.109Z","dependency_job_id":null,"html_url":"https://github.com/yuxingfei/laravel-admin","commit_stats":{"total_commits":25,"total_committers":3,"mean_commits":8.333333333333334,"dds":0.56,"last_synced_commit":"5f370098c6dc13398e6cb132a050923fc06d46d6"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuxingfei%2Flaravel-admin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuxingfei%2Flaravel-admin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuxingfei%2Flaravel-admin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuxingfei%2Flaravel-admin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yuxingfei","download_url":"https://codeload.github.com/yuxingfei/laravel-admin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239433901,"owners_count":19637806,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["admin","adminlte","laravel","laravel-admin","laravel7","php7"],"created_at":"2024-09-24T13:51:11.719Z","updated_at":"2025-11-04T11:30:39.325Z","avatar_url":"https://github.com/yuxingfei.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# laravel-admin 通用后台系统\n\n#### laravel-admin v2.0版本，基于laravel优雅风格的特性，以及服务设计模式，已重构，考虑到laravel的优雅灵活性，去除了1.0版本中的代码生成功能。\n\n[laravel-admin](https://github.com/yuxingfei/laravel-admin) 是基于laravel 7.*的版本和AdminLTE前端样式框架开发的一套通用后台管理系统[laravel-admin](https://github.com/yuxingfei/laravel-admin)。里面吸取了很多开源项目的精髓,laravel 7、AdminLte、mews/captcha等,开箱即用，非常灵活，该版本是v2.0版本，后面根据大家的需求，结合laravel 7的特性，推出更有laravel 7特色的版本。欢迎各位同仁使用后，提出宝贵的意见。欢迎加入laravel-admin通用后台系统技术交流QQ群: **682096728**\n\n## laravel-admin安装\n\n#### 运行环境\n```\nphp7.4版本\n```\n\n#### clone 项目到本地\n```\nGitHub:   git clone git@github.com:yuxingfei/laravel-admin.git\n```\n或\n```\n码云:   git clone git@gitee.com:yuxingfei/laravel-admin.git\n```\n\n#### 安装项目依赖\n```\ncomposer install\n```\n\n#### 配置数据库\n```\n更改 `.env` 文件内的数据库配置选项,数据库编码推荐`utf8mb4`。\n```\n\n#### 运行数据库迁移\n```\nphp artisan migrate\n``` \n#### 菜单生成数据填充\n```\nphp artisan db:seed\n``` \n#### 公共磁盘创建\n```\nphp artisan storage:link\n\n如果是docker容器部署,则需要到nginx或者php-fpm容器中,手动创建软连接：\n例如: cd {项目}/public \u0026\u0026 ln -s ../storage/app/public/ ./storage\n``` \n\n#### 最后一步，别忘了把项目设置为程序运行用户哟\n```\n例如我的程序运行用户是www用户:  chown -R www:www ./laravel-admin/\n``` \n\n#### 服务器配置\n可参考[Laravel 7 安装配置](https://learnku.com/docs/laravel/7.x/installation/7447)\n\n#### Docker容器部署\n可参考Laravel容器部署方案\n\n#### 访问后台\n访问`/admin`，默认超级管理员的账号密码都为`super_admin`。\n\n\n## 补充\n本项目采用大量的开源代码，包括Laravel7，AdminLTE、mews/captcha等。\n值得注意的是这是Laravel 版本的 通用后台管理系统[laravel-admin](https://github.com/yuxingfei/laravel-admin),如果大家需要thinkphp版本的后台管理系统，可以使用[BearAdmin](https://github.com/yupoxiong/BearAdmin)。\n\n## 科学上网\n顺便推荐两个比较稳定的科学上网，我用了几年了，一直比较稳定\n[樱花云](https://www.sakuras.pro/index.php#/register?code=hxGASdrG)\n[忍者云](https://renzhe.cloud/auth/register?code=GoTA)\n\n交流QQ群：[682096728](https://jq.qq.com/?_wv=1027\u0026k=8SMveoJ0)\n\n![Image](https://raw.githubusercontent.com/yuxingfei/images/master/qq_share_code.png)\n\n#### [laravel-admin](https://github.com/yuxingfei/laravel-admin)效果图\n\n![Image](https://raw.githubusercontent.com/yuxingfei/images/master/home.png)\n\n![Image](https://raw.githubusercontent.com/yuxingfei/images/master/skin_setting.png)\n\n![Image](https://raw.githubusercontent.com/yuxingfei/images/master/user.png)\n\n![Image](https://raw.githubusercontent.com/yuxingfei/images/master/menu.png)\n\n![Image](https://raw.githubusercontent.com/yuxingfei/images/master/role.png)\n\n![Image](https://raw.githubusercontent.com/yuxingfei/images/master/setting.png)\n\n![Image](https://raw.githubusercontent.com/yuxingfei/images/master/database.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyuxingfei%2Flaravel-admin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyuxingfei%2Flaravel-admin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyuxingfei%2Flaravel-admin/lists"}