首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

meedu安装包最新拉取

前端 2.34MB 18 需要积分: 1
立即下载

资源介绍:

meedu安装包最新拉取
# MeEdu 服务化架构 ## 初衷 MVC 是 PHP 开发当中流行了数十年的设计模式。但是,现如今,随着业务的复杂度的提高,传统的 MVC 架构已经无法有效的满足在保证代码清晰的同时,能够很好的 兼顾业务。基于此,延伸出了许多代码层面的架构和设计。比如说:引入 Service 的概念,将传统的 Model 与业务逻辑分开。这种代码层面的架构在许多的公司项目 中都有见到,但是随着业务复杂度的提高和需求的持续迭代,我们会发现,Service 层的代码越来越臃肿,变得难以维护!所以,聪明的 PHPer 开始尽可能的抽离Service ,划分好每个 Service 的职责范围。但是系统毕竟是由团队合作开发的,其中参与的每一个人都无法达到高度的思想统一!所以,一个项目维护时间长久之后,随着团队 人员的变动,后来者看到代码,脑子中只有一个词:“重构”!。 MeEdu 在设计之初,代码层面的架构其实也脱离不了 MVC 的范畴,你可以处处看到它的影子。作者在持续维护 MeEdu 的过程中,随着技术提升和视野的转变,对于系统 有了更深入的了解,于是决定对 MeEdu 进行一次变化较为彻底的重新架构设计:服务化设计!引入该设计的目的是使 MeEdu 的代码耦合度更低,更易于维护,单元测试 覆盖率更高! ## 目标 + 代码耦合度更低 + 业务职责划分更为彻底 + 微服务架构设计,服务替换无感知 + 达到更高的单元测试覆盖率 + 让支持 MeEdu 的小伙伴花费最少的时间参与 MeEdu 的开发 ## 服务列表 | 服务 | 说明 | | --- | --- | | `Base` | 系统底层服务,主要有:缓存,配置服务等 | | `Member` | 会员服务,负责 MeEdu 系统的会员注册/登录/找回密码/会员等级等 | | `Course` | 课程服务,主要提供课程/视频在线观看 | | `Order` | 订单服务,主要提供课程/视频/会员的在线购买服务 | | `Other` | 其它服务,主要是系统的一些小功能,包括像:上传,短信发送等 | ## 规则 + 除了 `BaseSerice` 可以被其它服务任意调用之外,其余的服务之间**禁止**互相调用。 + 单个服务内的 `Service` 可以互相调用。 + 所有的服务都必须通过注入的方式使用。 + 所有服务的返回值都必须为基础数据类型,如:数组,布尔值等。禁止返回诸如 Model对象,Collection对象等。 + 应用其它层可以任意的调用各种服务。 + 全局只可以使用 `Auth::id()` 和 `Auth::check()` 方法,禁止使用 `Auth::user()` 来获取当前登录用户,因为这个方法返回的是 `Model` 对象。 ## 规则解释 + 问:为什么禁止使用 `Auth::user()` 方法? 答:因为 `Auth::user()` 返回的是 `UserModel` 对象,该对象可以直接操作数据库!这是不允许的,所以的操作数据库行为都必须写在相应的 `Service` 里面。 + 问:为什么服务方法必须返回基础数据类型? 答:微服务设计不仅仅要考虑到Laravel或者PHP开发的应用,也有可能还有其它的语言!因此,为了服务的通用性,服务方法必须返回基础数据类型。

资源文件列表:

MeEdu-master_2.zip 大约有1020个文件
  1. MeEdu-master/
  2. MeEdu-master/.env.example 817B
  3. MeEdu-master/.env.install 845B
  4. MeEdu-master/.env.testing 638B
  5. MeEdu-master/.gitattributes 111B
  6. MeEdu-master/.gitignore 379B
  7. MeEdu-master/.php_cs 1.26KB
  8. MeEdu-master/.styleci.yml 192B
  9. MeEdu-master/.travis.yml 765B
  10. MeEdu-master/CONTRIBUTING.md 803B
  11. MeEdu-master/LICENSE 1.48KB
  12. MeEdu-master/README.md 2.35KB
  13. MeEdu-master/addons/
  14. MeEdu-master/addons/.gitignore 13B
  15. MeEdu-master/app/
  16. MeEdu-master/app/Bus/
  17. MeEdu-master/app/Bus/AuthBus.php 4.1KB
  18. MeEdu-master/app/Bus/VideoBus.php 2.38KB
  19. MeEdu-master/app/Businesses/
  20. MeEdu-master/app/Businesses/BusinessState.php 9.4KB
  21. MeEdu-master/app/Console/
  22. MeEdu-master/app/Console/Commands/
  23. MeEdu-master/app/Console/Commands/AddonsProviderMapGenrator.php 983B
  24. MeEdu-master/app/Console/Commands/ApplicationInstallCommand.php 3.71KB
  25. MeEdu-master/app/Console/Commands/InstallLockCommand.php 896B
  26. MeEdu-master/app/Console/Commands/MeEduUpgradeCommand.php 1.6KB
  27. MeEdu-master/app/Console/Commands/OrderHandlerCommand.php 1.53KB
  28. MeEdu-master/app/Console/Commands/OrderTimeoutHandlerCommand.php 1.41KB
  29. MeEdu-master/app/Console/Commands/TemplatePublicLinkCommand.php 1.31KB
  30. MeEdu-master/app/Console/Commands/UserRoleExpireHandlerCommand.php 1.11KB
  31. MeEdu-master/app/Console/Kernel.php 1.77KB
  32. MeEdu-master/app/Constant/
  33. MeEdu-master/app/Constant/ApiV2Constant.php 15.36KB
  34. MeEdu-master/app/Constant/BackendApiConstant.php 1.6KB
  35. MeEdu-master/app/Constant/CacheConstant.php 3.67KB
  36. MeEdu-master/app/Constant/FrontendConstant.php 2.74KB
  37. MeEdu-master/app/Events/
  38. MeEdu-master/app/Events/AppConfigSavedEvent.php 756B
  39. MeEdu-master/app/Events/CourseCommentEvent.php 963B
  40. MeEdu-master/app/Events/OrderCancelEvent.php 846B
  41. MeEdu-master/app/Events/PaymentSuccessEvent.php 869B
  42. MeEdu-master/app/Events/UserCourseWatchedEvent.php 879B
  43. MeEdu-master/app/Events/UserInviteBalanceWithdrawCreatedEvent.php 995B
  44. MeEdu-master/app/Events/UserInviteBalanceWithdrawHandledEvent.php 934B
  45. MeEdu-master/app/Events/UserLoginEvent.php 1KB
  46. MeEdu-master/app/Events/UserRegisterEvent.php 910B
  47. MeEdu-master/app/Events/UserVideoWatchedEvent.php 874B
  48. MeEdu-master/app/Events/VideoCommentEvent.php 957B
  49. MeEdu-master/app/Exceptions/
  50. MeEdu-master/app/Exceptions/ApiV2Exception.php 334B
  51. MeEdu-master/app/Exceptions/Backend/
  52. MeEdu-master/app/Exceptions/Backend/ServiceException.php 346B
  53. MeEdu-master/app/Exceptions/Backend/ValidateException.php 332B
  54. MeEdu-master/app/Exceptions/Handler.php 3.37KB
  55. MeEdu-master/app/Exceptions/ServiceException.php 466B
  56. MeEdu-master/app/Exceptions/SystemException.php 420B
  57. MeEdu-master/app/Hooks/
  58. MeEdu-master/app/Hooks/MpWechatMessageReplyHook.php 1.78KB
  59. MeEdu-master/app/Hooks/MpWechatSubscribeHook.php 1.64KB
  60. MeEdu-master/app/Http/
  61. MeEdu-master/app/Http/Controllers/
  62. MeEdu-master/app/Http/Controllers/Api/
  63. MeEdu-master/app/Http/Controllers/Api/V2/
  64. MeEdu-master/app/Http/Controllers/Api/V2/BaseController.php 3.79KB
  65. MeEdu-master/app/Http/Controllers/Api/V2/CaptchaController.php 3.94KB
  66. MeEdu-master/app/Http/Controllers/Api/V2/CourseCategoryController.php 1.5KB
  67. MeEdu-master/app/Http/Controllers/Api/V2/CourseController.php 12.05KB
  68. MeEdu-master/app/Http/Controllers/Api/V2/IndexBannerController.php 1.33KB
  69. MeEdu-master/app/Http/Controllers/Api/V2/LoginController.php 14.85KB
  70. MeEdu-master/app/Http/Controllers/Api/V2/MemberController.php 38.05KB
  71. MeEdu-master/app/Http/Controllers/Api/V2/OrderController.php 6.67KB
  72. MeEdu-master/app/Http/Controllers/Api/V2/OtherController.php 3.45KB
  73. MeEdu-master/app/Http/Controllers/Api/V2/PasswordController.php 864B
  74. MeEdu-master/app/Http/Controllers/Api/V2/PaymentController.php 6.85KB
  75. MeEdu-master/app/Http/Controllers/Api/V2/PromoCodeController.php 2.74KB
  76. MeEdu-master/app/Http/Controllers/Api/V2/RegisterController.php 1.66KB
  77. MeEdu-master/app/Http/Controllers/Api/V2/RoleController.php 2.76KB
  78. MeEdu-master/app/Http/Controllers/Api/V2/SearchController.php 1.74KB
  79. MeEdu-master/app/Http/Controllers/Api/V2/SliderController.php 1.42KB
  80. MeEdu-master/app/Http/Controllers/Api/V2/Traits/
  81. MeEdu-master/app/Http/Controllers/Api/V2/Traits/ResponseTrait.php 775B
  82. MeEdu-master/app/Http/Controllers/Api/V2/UploadController.php 372B
  83. MeEdu-master/app/Http/Controllers/Api/V2/VideoController.php 13.13KB
  84. MeEdu-master/app/Http/Controllers/Api/V2/WechatMiniController.php 2.94KB
  85. MeEdu-master/app/Http/Controllers/Api/Wechat/
  86. MeEdu-master/app/Http/Controllers/Api/Wechat/MpWechatController.php 988B
  87. MeEdu-master/app/Http/Controllers/Backend/
  88. MeEdu-master/app/Http/Controllers/Backend/Api/
  89. MeEdu-master/app/Http/Controllers/Backend/Api/V1/
  90. MeEdu-master/app/Http/Controllers/Backend/Api/V1/AdFromController.php 1.84KB
  91. MeEdu-master/app/Http/Controllers/Backend/Api/V1/AddonsController.php 6.8KB
  92. MeEdu-master/app/Http/Controllers/Backend/Api/V1/AdministratorController.php 2.4KB
  93. MeEdu-master/app/Http/Controllers/Backend/Api/V1/AdministratorPermissionController.php 422B
  94. MeEdu-master/app/Http/Controllers/Backend/Api/V1/AdministratorRoleController.php 2.01KB
  95. MeEdu-master/app/Http/Controllers/Backend/Api/V1/AnnouncementController.php 1.07KB
  96. MeEdu-master/app/Http/Controllers/Backend/Api/V1/BaseController.php 1.14KB
  97. MeEdu-master/app/Http/Controllers/Backend/Api/V1/CourseAttachController.php 1.06KB
  98. MeEdu-master/app/Http/Controllers/Backend/Api/V1/CourseCategoryController.php 1.05KB
  99. MeEdu-master/app/Http/Controllers/Backend/Api/V1/CourseChapterController.php 1.51KB
  100. MeEdu-master/app/Http/Controllers/Backend/Api/V1/CourseCommentController.php 1.47KB
  101. MeEdu-master/app/Http/Controllers/Backend/Api/V1/CourseController.php 8.85KB
  102. MeEdu-master/app/Http/Controllers/Backend/Api/V1/CourseVideoController.php 9.48KB
  103. MeEdu-master/app/Http/Controllers/Backend/Api/V1/DashboardController.php 1.36KB
  104. MeEdu-master/app/Http/Controllers/Backend/Api/V1/IndexBannerController.php 1.23KB
  105. MeEdu-master/app/Http/Controllers/Backend/Api/V1/LinkController.php 996B
  106. MeEdu-master/app/Http/Controllers/Backend/Api/V1/LoginController.php 3.82KB
  107. MeEdu-master/app/Http/Controllers/Backend/Api/V1/MemberController.php 12.64KB
  108. MeEdu-master/app/Http/Controllers/Backend/Api/V1/MpWechatController.php 967B
  109. MeEdu-master/app/Http/Controllers/Backend/Api/V1/MpWechatMessageReplyController.php 2.69KB
  110. MeEdu-master/app/Http/Controllers/Backend/Api/V1/NavController.php 1.77KB
  111. MeEdu-master/app/Http/Controllers/Backend/Api/V1/OrderController.php 1.99KB
  112. MeEdu-master/app/Http/Controllers/Backend/Api/V1/PromoCodeController.php 4.54KB
  113. MeEdu-master/app/Http/Controllers/Backend/Api/V1/RoleController.php 1.28KB
  114. MeEdu-master/app/Http/Controllers/Backend/Api/V1/SettingController.php 1.28KB
  115. MeEdu-master/app/Http/Controllers/Backend/Api/V1/SliderController.php 983B
  116. MeEdu-master/app/Http/Controllers/Backend/Api/V1/StatisticController.php 7.5KB
  117. MeEdu-master/app/Http/Controllers/Backend/Api/V1/UploadController.php 562B
  118. MeEdu-master/app/Http/Controllers/Backend/Api/V1/VideoCommentController.php 1.93KB
  119. MeEdu-master/app/Http/Controllers/Backend/Api/V1/VideoUploadController.php 2.9KB
  120. MeEdu-master/app/Http/Controllers/BaseController.php 1.48KB
  121. MeEdu-master/app/Http/Controllers/Controller.php 463B
  122. MeEdu-master/app/Http/Controllers/Frontend/
  123. MeEdu-master/app/Http/Controllers/Frontend/AjaxController.php 10.62KB
  124. MeEdu-master/app/Http/Controllers/Frontend/AnnouncementController.php 842B
  125. MeEdu-master/app/Http/Controllers/Frontend/CourseController.php 8.73KB
  126. MeEdu-master/app/Http/Controllers/Frontend/ForgotPasswordController.php 1.09KB
  127. MeEdu-master/app/Http/Controllers/Frontend/FrontendController.php 1.34KB
  128. MeEdu-master/app/Http/Controllers/Frontend/IndexController.php 3.98KB
  129. MeEdu-master/app/Http/Controllers/Frontend/LoginController.php 6.02KB
  130. MeEdu-master/app/Http/Controllers/Frontend/MemberController.php 15.84KB
  131. MeEdu-master/app/Http/Controllers/Frontend/OrderController.php 6.03KB
  132. MeEdu-master/app/Http/Controllers/Frontend/PaymentController.php 611B
  133. MeEdu-master/app/Http/Controllers/Frontend/RegisterController.php 1.52KB
  134. MeEdu-master/app/Http/Controllers/Frontend/RoleController.php 2.8KB
  135. MeEdu-master/app/Http/Controllers/Frontend/SearchController.php 950B
  136. MeEdu-master/app/Http/Controllers/Frontend/SmsController.php 2.09KB
  137. MeEdu-master/app/Http/Controllers/Frontend/UploadController.php 474B
  138. MeEdu-master/app/Http/Controllers/Frontend/VideoController.php 8.26KB
  139. MeEdu-master/app/Http/Kernel.php 3.53KB
  140. MeEdu-master/app/Http/Middleware/
  141. MeEdu-master/app/Http/Middleware/Api/
  142. MeEdu-master/app/Http/Middleware/Api/LoginStatusCheckMiddleware.php 2.28KB
  143. MeEdu-master/app/Http/Middleware/Backend/
  144. MeEdu-master/app/Http/Middleware/Backend/BackendPermissionCheckMiddleware.php 1.09KB
  145. MeEdu-master/app/Http/Middleware/CheckSmsCodeMiddleware.php 956B
  146. MeEdu-master/app/Http/Middleware/EncryptCookies.php 501B
  147. MeEdu-master/app/Http/Middleware/GlobalShareMiddleware.php 4.22KB
  148. MeEdu-master/app/Http/Middleware/LoginStatusCheckMiddleware.php 2.39KB
  149. MeEdu-master/app/Http/Middleware/MobileBindCheckMiddleware.php 1.17KB
  150. MeEdu-master/app/Http/Middleware/RedirectIfAuthenticated.php 618B
  151. MeEdu-master/app/Http/Middleware/TrimStrings.php 426B
  152. MeEdu-master/app/Http/Middleware/TrustProxies.php 501B
  153. MeEdu-master/app/Http/Middleware/VerifyCsrfToken.php 478B
  154. MeEdu-master/app/Http/Requests/
  155. MeEdu-master/app/Http/Requests/ApiV2/
  156. MeEdu-master/app/Http/Requests/ApiV2/AvatarChangeRequest.php 618B
  157. MeEdu-master/app/Http/Requests/ApiV2/BaseRequest.php 603B
  158. MeEdu-master/app/Http/Requests/ApiV2/CommentRequest.php 593B
  159. MeEdu-master/app/Http/Requests/ApiV2/InviteBalanceWithdrawRequest.php 1.56KB
  160. MeEdu-master/app/Http/Requests/ApiV2/MobileChangeRequest.php 637B
  161. MeEdu-master/app/Http/Requests/ApiV2/MobileLoginRequest.php 529B
  162. MeEdu-master/app/Http/Requests/ApiV2/NicknameChangeRequest.php 547B
  163. MeEdu-master/app/Http/Requests/ApiV2/PasswordChangeRequest.php 788B
  164. MeEdu-master/app/Http/Requests/ApiV2/PasswordLoginRequest.php 678B
  165. MeEdu-master/app/Http/Requests/ApiV2/RegisterRequest.php 633B
  166. MeEdu-master/app/Http/Requests/ApiV2/RegisterSmsRequest.php 962B
  167. MeEdu-master/app/Http/Requests/ApiV2/SmsRequest.php 980B
  168. MeEdu-master/app/Http/Requests/ApiV2/UploadImageRequest.php 617B
  169. MeEdu-master/app/Http/Requests/Backend/
  170. MeEdu-master/app/Http/Requests/Backend/AdFromRequest.php 980B
  171. MeEdu-master/app/Http/Requests/Backend/Administrator/
  172. MeEdu-master/app/Http/Requests/Backend/Administrator/AdministratorRequest.php 1.97KB
  173. MeEdu-master/app/Http/Requests/Backend/Administrator/EditPasswordRequest.php 1.27KB
  174. MeEdu-master/app/Http/Requests/Backend/AdministratorRoleRequest.php 1.34KB
  175. MeEdu-master/app/Http/Requests/Backend/AnnouncementRequest.php 1.14KB
  176. MeEdu-master/app/Http/Requests/Backend/BaseRequest.php 639B
  177. MeEdu-master/app/Http/Requests/Backend/CourseAttachRequest.php 1.38KB
  178. MeEdu-master/app/Http/Requests/Backend/CourseCategoryRequest.php 1.02KB
  179. MeEdu-master/app/Http/Requests/Backend/CourseChapterRequest.php 853B
  180. MeEdu-master/app/Http/Requests/Backend/CourseRequest.php 2.47KB
  181. MeEdu-master/app/Http/Requests/Backend/CourseVideoRequest.php 3.07KB
  182. MeEdu-master/app/Http/Requests/Backend/EmailSubscriptionRequest.php 961B
  183. MeEdu-master/app/Http/Requests/Backend/ImageUploadRequest.php 886B
  184. MeEdu-master/app/Http/Requests/Backend/IndexBannerRequest.php 869B
  185. MeEdu-master/app/Http/Requests/Backend/LinkRequest.php 1.03KB
  186. MeEdu-master/app/Http/Requests/Backend/LoginRequest.php 1.01KB
  187. MeEdu-master/app/Http/Requests/Backend/MemberRequest.php 1.6KB
  188. MeEdu-master/app/Http/Requests/Backend/MpWechatMessageReplyRequest.php 883B
  189. MeEdu-master/app/Http/Requests/Backend/NavRequest.php 1.35KB
  190. MeEdu-master/app/Http/Requests/Backend/PromoCodeGeneratorRequest.php 399B
  191. MeEdu-master/app/Http/Requests/Backend/PromoCodeRequest.php 1.36KB
  192. MeEdu-master/app/Http/Requests/Backend/RoleRequest.php 1.06KB
  193. MeEdu-master/app/Http/Requests/Backend/SliderRequest.php 1.18KB
  194. MeEdu-master/app/Http/Requests/Frontend/
  195. MeEdu-master/app/Http/Requests/Frontend/BaseRequest.php 713B
  196. MeEdu-master/app/Http/Requests/Frontend/CourseOrVideoCommentCreateRequest.php 615B
  197. MeEdu-master/app/Http/Requests/Frontend/LoginPasswordRequest.php 683B
  198. MeEdu-master/app/Http/Requests/Frontend/Member/
  199. MeEdu-master/app/Http/Requests/Frontend/Member/AvatarChangeRequest.php 673B
  200. MeEdu-master/app/Http/Requests/Frontend/Member/InviteBalanceWithdrawRequest.php 1.75KB
  201. MeEdu-master/app/Http/Requests/Frontend/Member/MemberPasswordResetRequest.php 1.36KB
  202. MeEdu-master/app/Http/Requests/Frontend/Member/MobileBindRequest.php 686B
  203. MeEdu-master/app/Http/Requests/Frontend/Member/NicknameChangeRequest.php 676B
  204. MeEdu-master/app/Http/Requests/Frontend/Member/ReadAMessageRequest.php 445B
  205. MeEdu-master/app/Http/Requests/Frontend/PasswordResetRequest.php 870B
  206. MeEdu-master/app/Http/Requests/Frontend/RegisterPasswordRequest.php 985B
  207. MeEdu-master/app/Http/Requests/Frontend/SearchRequest.php 813B
  208. MeEdu-master/app/Http/Requests/Frontend/SmsSendRequest.php 971B
  209. MeEdu-master/app/Http/Requests/Frontend/UploadImageRequest.php 620B
  210. MeEdu-master/app/Jobs/
  211. MeEdu-master/app/Jobs/UserRegisterIpToAreaJob.php 1.62KB
  212. MeEdu-master/app/Listeners/
  213. MeEdu-master/app/Listeners/CourseCommentEvent/
  214. MeEdu-master/app/Listeners/CourseCommentEvent/AtEventListener.php 2.71KB
  215. MeEdu-master/app/Listeners/CourseCommentEvent/NotifyOwnerListener.php 668B
  216. MeEdu-master/app/Listeners/OrderCancelEvent/
  217. MeEdu-master/app/Listeners/OrderCancelEvent/InviteBalanceResumeListener.php 526B
  218. MeEdu-master/app/Listeners/OrderCancelEvent/PromoCodeResumeListener.php 1.73KB
  219. MeEdu-master/app/Listeners/PaymentSuccessEvent/
  220. MeEdu-master/app/Listeners/PaymentSuccessEvent/Credit1RewardListener.php 2.11KB
  221. MeEdu-master/app/Listeners/PaymentSuccessEvent/InviteUserRewardListener.php 2.84KB
  222. MeEdu-master/app/Listeners/PaymentSuccessEvent/OrderPaidDeliverListener.php 1.5KB
  223. MeEdu-master/app/Listeners/PaymentSuccessEvent/OrderPaidNotificationListener.php 947B
  224. MeEdu-master/app/Listeners/PaymentSuccessEvent/OrderPaidStatusChangeListener.php 1.26KB
  225. MeEdu-master/app/Listeners/PaymentSuccessEvent/PromoCodeListener.php 4.19KB
  226. MeEdu-master/app/Listeners/UserCourseWatchedEvent/
  227. MeEdu-master/app/Listeners/UserCourseWatchedEvent/UserCourseWatchedCredit1RewardListener.php 2.05KB
  228. MeEdu-master/app/Listeners/UserCourseWatchedEvent/UserCourseWatchedListener.php 1.02KB
  229. MeEdu-master/app/Listeners/UserInviteBalanceWithdrawCreatedEvent/
  230. MeEdu-master/app/Listeners/UserInviteBalanceWithdrawCreatedEvent/NotifyListener.php 597B
  231. MeEdu-master/app/Listeners/UserInviteBalanceWithdrawHandledEvent/
  232. MeEdu-master/app/Listeners/UserInviteBalanceWithdrawHandledEvent/NotifyListener.php 2.06KB
  233. MeEdu-master/app/Listeners/UserInviteBalanceWithdrawHandledEvent/RefundBalanceListener.php 1.59KB
  234. MeEdu-master/app/Listeners/UserLoginEvent/
  235. MeEdu-master/app/Listeners/UserLoginEvent/LoginRecordListener.php 1.36KB
  236. MeEdu-master/app/Listeners/UserRegisterEvent/
  237. MeEdu-master/app/Listeners/UserRegisterEvent/RegisterCredit1RewardListener.php 2.04KB
  238. MeEdu-master/app/Listeners/UserRegisterEvent/RegisterIpRecordListener.php 1.11KB
  239. MeEdu-master/app/Listeners/UserRegisterEvent/RegisterSendVipListener.php 1.51KB
  240. MeEdu-master/app/Listeners/UserRegisterEvent/WelcomeMessageListener.php 1.05KB
  241. MeEdu-master/app/Listeners/UserVideoWatchedEvent/
  242. MeEdu-master/app/Listeners/UserVideoWatchedEvent/UserVideoWatchedCredit1RewardListener.php 2.04KB
  243. MeEdu-master/app/Listeners/UserVideoWatchedEvent/UserVideoWatchedListener.php 2.69KB
  244. MeEdu-master/app/Listeners/VideoCommentEvent/
  245. MeEdu-master/app/Listeners/VideoCommentEvent/AtEventListener.php 2.69KB
  246. MeEdu-master/app/Listeners/VideoCommentEvent/NotifyOwnerListener.php 659B
  247. MeEdu-master/app/Meedu/
  248. MeEdu-master/app/Meedu/Addons.php 5.38KB
  249. MeEdu-master/app/Meedu/AddonsProvider.php 628B
  250. MeEdu-master/app/Meedu/Cache/
  251. MeEdu-master/app/Meedu/Cache/Inc/
  252. MeEdu-master/app/Meedu/Cache/Inc/AdFromIncItem.php 1.49KB
  253. MeEdu-master/app/Meedu/Cache/Inc/Inc.php 728B
  254. MeEdu-master/app/Meedu/Cache/Inc/IncItem.php 742B
  255. MeEdu-master/app/Meedu/Cache/Inc/VideoViewIncItem.php 1.12KB
  256. MeEdu-master/app/Meedu/Hooks/
  257. MeEdu-master/app/Meedu/Hooks/Constant/
  258. MeEdu-master/app/Meedu/Hooks/Constant/PositionConstant.php 268B
  259. MeEdu-master/app/Meedu/Hooks/HookContainer.php 997B
  260. MeEdu-master/app/Meedu/Hooks/HookParams.php 810B
  261. MeEdu-master/app/Meedu/Hooks/HookRun.php 1.58KB
  262. MeEdu-master/app/Meedu/Hooks/HookRuntimeInterface.php 223B
  263. MeEdu-master/app/Meedu/Ip.php 1.66KB
  264. MeEdu-master/app/Meedu/MeEdu.php 159B
  265. MeEdu-master/app/Meedu/MeEduCloud.php 3.18KB
  266. MeEdu-master/app/Meedu/Payment/
  267. MeEdu-master/app/Meedu/Payment/Alipay/
  268. MeEdu-master/app/Meedu/Payment/Alipay/Alipay.php 3.09KB
  269. MeEdu-master/app/Meedu/Payment/Contract/
  270. MeEdu-master/app/Meedu/Payment/Contract/Payment.php 665B
  271. MeEdu-master/app/Meedu/Payment/Contract/PaymentStatus.php 408B
  272. MeEdu-master/app/Meedu/Payment/HandPay/
  273. MeEdu-master/app/Meedu/Payment/HandPay/HandPay.php 912B
  274. MeEdu-master/app/Meedu/Payment/Wechat/
  275. MeEdu-master/app/Meedu/Payment/Wechat/WechatJSAPI.php 4KB
  276. MeEdu-master/app/Meedu/Payment/Wechat/WechatScan.php 3.95KB
  277. MeEdu-master/app/Meedu/Player/
  278. MeEdu-master/app/Meedu/Player/TencentKey.php 3.02KB
  279. MeEdu-master/app/Meedu/ServiceProxy/
  280. MeEdu-master/app/Meedu/ServiceProxy/Cache/
  281. MeEdu-master/app/Meedu/ServiceProxy/Cache/CacheInfo.php 897B
  282. MeEdu-master/app/Meedu/ServiceProxy/Limiter/
  283. MeEdu-master/app/Meedu/ServiceProxy/Limiter/LimiterInfo.php 1.24KB
  284. MeEdu-master/app/Meedu/ServiceProxy/Lock/
  285. MeEdu-master/app/Meedu/ServiceProxy/Lock/LockInfo.php 906B
  286. MeEdu-master/app/Meedu/ServiceProxy/ServiceProxy.php 4.5KB
  287. MeEdu-master/app/Meedu/Setting.php 2.39KB
  288. MeEdu-master/app/Meedu/Sms/
  289. MeEdu-master/app/Meedu/Sms/Aliyun.php 1.56KB
  290. MeEdu-master/app/Meedu/Sms/SmsInterface.php 210B
  291. MeEdu-master/app/Meedu/Sms/Yunpian.php 1.38KB
  292. MeEdu-master/app/Meedu/Tencent/
  293. MeEdu-master/app/Meedu/Tencent/Vod.php 980B
  294. MeEdu-master/app/Meedu/Upgrade.php 2.22KB
  295. MeEdu-master/app/Meedu/Wechat.php 1.73KB
  296. MeEdu-master/app/Meedu/WechatMini.php 877B
  297. MeEdu-master/app/Models/
  298. MeEdu-master/app/Models/Administrator.php 4.08KB
  299. MeEdu-master/app/Models/AdministratorMenu.php 466B
  300. MeEdu-master/app/Models/AdministratorPermission.php 928B
  301. MeEdu-master/app/Models/AdministratorRole.php 1.76KB
  302. MeEdu-master/app/Providers/
  303. MeEdu-master/app/Providers/AppServiceProvider.php 1.82KB
  304. MeEdu-master/app/Providers/AuthServiceProvider.php 585B
  305. MeEdu-master/app/Providers/BroadcastServiceProvider.php 439B
  306. MeEdu-master/app/Providers/EventServiceProvider.php 3.03KB
  307. MeEdu-master/app/Providers/HooksRegisterProvider.php 652B
  308. MeEdu-master/app/Providers/RouteServiceProvider.php 1.89KB
  309. MeEdu-master/app/Services/
  310. MeEdu-master/app/Services/Base/
  311. MeEdu-master/app/Services/Base/Interfaces/
  312. MeEdu-master/app/Services/Base/Interfaces/CacheServiceInterface.php 170B
  313. MeEdu-master/app/Services/Base/Interfaces/ConfigServiceInterface.php 171B
  314. MeEdu-master/app/Services/Base/Interfaces/RenderServiceInterface.php 171B
  315. MeEdu-master/app/Services/Base/Model/
  316. MeEdu-master/app/Services/Base/Model/AppConfig.php 414B
  317. MeEdu-master/app/Services/Base/Providers/
  318. MeEdu-master/app/Services/Base/Providers/BaseServiceRegisterProvider.php 887B
  319. MeEdu-master/app/Services/Base/Services/
  320. MeEdu-master/app/Services/Base/Services/CacheService.php 1.1KB
  321. MeEdu-master/app/Services/Base/Services/ConfigService.php 10.2KB
  322. MeEdu-master/app/Services/Base/Services/RenderService.php 1008B
  323. MeEdu-master/app/Services/Course/
  324. MeEdu-master/app/Services/Course/Interfaces/
  325. MeEdu-master/app/Services/Course/Interfaces/CourseCategoryServiceInterface.php 181B
  326. MeEdu-master/app/Services/Course/Interfaces/CourseCommentServiceInterface.php 180B
  327. MeEdu-master/app/Services/Course/Interfaces/CourseServiceInterface.php 173B
  328. MeEdu-master/app/Services/Course/Interfaces/VideoCommentServiceInterface.php 179B
  329. MeEdu-master/app/Services/Course/Interfaces/VideoServiceInterface.php 172B
  330. MeEdu-master/app/Services/Course/Models/
  331. MeEdu-master/app/Services/Course/Models/Base.php 473B
  332. MeEdu-master/app/Services/Course/Models/Course.php 2.83KB
  333. MeEdu-master/app/Services/Course/Models/CourseAttach.php 460B
  334. MeEdu-master/app/Services/Course/Models/CourseCategory.php 731B
  335. MeEdu-master/app/Services/Course/Models/CourseChapter.php 648B
  336. MeEdu-master/app/Services/Course/Models/CourseComment.php 545B
  337. MeEdu-master/app/Services/Course/Models/CourseUserRecord.php 436B
  338. MeEdu-master/app/Services/Course/Models/Video.php 1.9KB
  339. MeEdu-master/app/Services/Course/Models/VideoComment.php 539B
  340. MeEdu-master/app/Services/Course/Providers/
  341. MeEdu-master/app/Services/Course/Providers/CourseServiceRegisterProvider.php 1.39KB
  342. MeEdu-master/app/Services/Course/Proxies/
  343. MeEdu-master/app/Services/Course/Proxies/CourseServiceProxy.php 1.36KB
  344. MeEdu-master/app/Services/Course/Proxies/VideoServiceProxy.php 1.33KB
  345. MeEdu-master/app/Services/Course/Services/
  346. MeEdu-master/app/Services/Course/Services/CourseCategoryService.php 649B
  347. MeEdu-master/app/Services/Course/Services/CourseCommentService.php 1.71KB
  348. MeEdu-master/app/Services/Course/Services/CourseService.php 8.23KB
  349. MeEdu-master/app/Services/Course/Services/VideoCommentService.php 1.6KB
  350. MeEdu-master/app/Services/Course/Services/VideoService.php 2.73KB
  351. MeEdu-master/app/Services/Member/
  352. MeEdu-master/app/Services/Member/Interfaces/
  353. MeEdu-master/app/Services/Member/Interfaces/CreditServiceInterface.php 173B
  354. MeEdu-master/app/Services/Member/Interfaces/DeliverServiceInterface.php 174B
  355. MeEdu-master/app/Services/Member/Interfaces/NotificationServiceInterface.php 179B
  356. MeEdu-master/app/Services/Member/Interfaces/RoleServiceInterface.php 171B
  357. MeEdu-master/app/Services/Member/Interfaces/SocialiteServiceInterface.php 176B
  358. MeEdu-master/app/Services/Member/Interfaces/UserInviteBalanceServiceInterface.php 184B
  359. MeEdu-master/app/Services/Member/Interfaces/UserServiceInterface.php 171B
  360. MeEdu-master/app/Services/Member/Models/
  361. MeEdu-master/app/Services/Member/Models/Role.php 1.11KB
  362. MeEdu-master/app/Services/Member/Models/Socialite.php 518B
  363. MeEdu-master/app/Services/Member/Models/User.php 2.41KB
  364. MeEdu-master/app/Services/Member/Models/UserCourse.php 371B
  365. MeEdu-master/app/Services/Member/Models/UserCreditRecord.php 498B
  366. MeEdu-master/app/Services/Member/Models/UserInviteBalanceRecord.php 790B
  367. MeEdu-master/app/Services/Member/Models/UserInviteBalanceWithdrawOrder.php 962B
  368. MeEdu-master/app/Services/Member/Models/UserJoinRoleRecord.php 563B
  369. MeEdu-master/app/Services/Member/Models/UserLikeCourse.php 392B
  370. MeEdu-master/app/Services/Member/Models/UserLoginRecord.php 345B
  371. MeEdu-master/app/Services/Member/Models/UserProfile.php 792B
  372. MeEdu-master/app/Services/Member/Models/UserRemark.php 312B
  373. MeEdu-master/app/Services/Member/Models/UserTag.php 417B
  374. MeEdu-master/app/Services/Member/Models/UserTagRelation.php 248B
  375. MeEdu-master/app/Services/Member/Models/UserVideo.php 368B
  376. MeEdu-master/app/Services/Member/Models/UserVideoWatchRecord.php 448B
  377. MeEdu-master/app/Services/Member/Models/UserWatchStat.php 411B
  378. MeEdu-master/app/Services/Member/Notifications/
  379. MeEdu-master/app/Services/Member/Notifications/SimpleMessageNotification.php 1.53KB
  380. MeEdu-master/app/Services/Member/Providers/
  381. MeEdu-master/app/Services/Member/Providers/MemberServiceRegisterProvider.php 1.78KB
  382. MeEdu-master/app/Services/Member/Proxies/
  383. MeEdu-master/app/Services/Member/Proxies/UserInviteBalanceServiceProxy.php 528B
  384. MeEdu-master/app/Services/Member/Proxies/UserServiceProxy.php 1.05KB
  385. MeEdu-master/app/Services/Member/Services/
  386. MeEdu-master/app/Services/Member/Services/CreditService.php 1.51KB
  387. MeEdu-master/app/Services/Member/Services/DeliverService.php 2.48KB
  388. MeEdu-master/app/Services/Member/Services/NotificationService.php 2.98KB
  389. MeEdu-master/app/Services/Member/Services/RoleService.php 2.98KB
  390. MeEdu-master/app/Services/Member/Services/SocialiteService.php 4.17KB
  391. MeEdu-master/app/Services/Member/Services/UserInviteBalanceService.php 4.59KB
  392. MeEdu-master/app/Services/Member/Services/UserService.php 19.73KB
  393. MeEdu-master/app/Services/Order/
  394. MeEdu-master/app/Services/Order/Interfaces/
  395. MeEdu-master/app/Services/Order/Interfaces/OrderServiceInterface.php 171B
  396. MeEdu-master/app/Services/Order/Interfaces/PromoCodeServiceInterface.php 175B
  397. MeEdu-master/app/Services/Order/Models/
  398. MeEdu-master/app/Services/Order/Models/Order.php 2.81KB
  399. MeEdu-master/app/Services/Order/Models/OrderGoods.php 1020B
  400. MeEdu-master/app/Services/Order/Models/OrderPaidRecord.php 1.01KB
  401. MeEdu-master/app/Services/Order/Models/PromoCode.php 477B
  402. MeEdu-master/app/Services/Order/Providers/
  403. MeEdu-master/app/Services/Order/Providers/OrderServiceRegisterProvider.php 701B
  404. MeEdu-master/app/Services/Order/Services/
  405. MeEdu-master/app/Services/Order/Services/OrderService.php 10.21KB
  406. MeEdu-master/app/Services/Order/Services/PromoCodeService.php 2.78KB
  407. MeEdu-master/app/Services/Other/
  408. MeEdu-master/app/Services/Other/Interfaces/
  409. MeEdu-master/app/Services/Other/Interfaces/AdFromServiceInterface.php 172B
  410. MeEdu-master/app/Services/Other/Interfaces/AnnouncementServiceInterface.php 178B
  411. MeEdu-master/app/Services/Other/Interfaces/IndexBannerServiceInterface.php 177B
  412. MeEdu-master/app/Services/Other/Interfaces/LinkServiceInterface.php 170B
  413. MeEdu-master/app/Services/Other/Interfaces/MpWechatServiceInterface.php 174B
  414. MeEdu-master/app/Services/Other/Interfaces/NavServiceInterface.php 169B
  415. MeEdu-master/app/Services/Other/Interfaces/SliderServiceInterface.php 172B
  416. MeEdu-master/app/Services/Other/Interfaces/SmsServiceInterface.php 169B
  417. MeEdu-master/app/Services/Other/Interfaces/UploadServiceInterface.php 172B
  418. MeEdu-master/app/Services/Other/Models/
  419. MeEdu-master/app/Services/Other/Models/AdFrom.php 649B
  420. MeEdu-master/app/Services/Other/Models/AdFromNumber.php 501B
  421. MeEdu-master/app/Services/Other/Models/Announcement.php 366B
  422. MeEdu-master/app/Services/Other/Models/IndexBanner.php 322B
  423. MeEdu-master/app/Services/Other/Models/Link.php 285B
  424. MeEdu-master/app/Services/Other/Models/MpWechatMessageReply.php 552B
  425. MeEdu-master/app/Services/Other/Models/Nav.php 456B
  426. MeEdu-master/app/Services/Other/Models/Slider.php 385B
  427. MeEdu-master/app/Services/Other/Models/SmsRecord.php 619B
  428. MeEdu-master/app/Services/Other/Providers/
  429. MeEdu-master/app/Services/Other/Providers/OtherServiceRegisterProvider.php 2.16KB
  430. MeEdu-master/app/Services/Other/Proxies/
  431. MeEdu-master/app/Services/Other/Proxies/AnnouncementServiceProxy.php 806B
  432. MeEdu-master/app/Services/Other/Proxies/IndexBannerServiceProxy.php 810B
  433. MeEdu-master/app/Services/Other/Proxies/LinkServiceProxy.php 752B
  434. MeEdu-master/app/Services/Other/Proxies/NavServiceProxy.php 781B
  435. MeEdu-master/app/Services/Other/Proxies/SliderServiceProxy.php 849B
  436. MeEdu-master/app/Services/Other/Proxies/SmsServiceProxy.php 770B
  437. MeEdu-master/app/Services/Other/Services/
  438. MeEdu-master/app/Services/Other/Services/AdFromService.php 1.48KB
  439. MeEdu-master/app/Services/Other/Services/AnnouncementService.php 809B
  440. MeEdu-master/app/Services/Other/Services/IndexBannerService.php 425B
  441. MeEdu-master/app/Services/Other/Services/LinkService.php 390B
  442. MeEdu-master/app/Services/Other/Services/MpWechatService.php 2.17KB
  443. MeEdu-master/app/Services/Other/Services/NavService.php 813B
  444. MeEdu-master/app/Services/Other/Services/SliderService.php 656B
  445. MeEdu-master/app/Services/Other/Services/SmsService.php 1.63KB
  446. MeEdu-master/app/Services/Other/Services/UploadService.php 250B
  447. MeEdu-master/app/Services/README.md 3.2KB
  448. MeEdu-master/app/helper.php 18.18KB
  449. MeEdu-master/artisan 1.66KB
  450. MeEdu-master/bootstrap/
  451. MeEdu-master/bootstrap/app.php 1.26KB
  452. MeEdu-master/bootstrap/cache/
  453. MeEdu-master/bootstrap/cache/.gitignore 14B
  454. MeEdu-master/composer.json 3.32KB
  455. MeEdu-master/composer.lock 413.21KB
  456. MeEdu-master/composer.phar 1.88MB
  457. MeEdu-master/config/
  458. MeEdu-master/config/app.php 9.49KB
  459. MeEdu-master/config/auth.php 3.53KB
  460. MeEdu-master/config/broadcasting.php 1.65KB
  461. MeEdu-master/config/cache.php 2.71KB
  462. MeEdu-master/config/captcha.php 1.05KB
  463. MeEdu-master/config/cors.php 1.76KB
  464. MeEdu-master/config/database.php 3.94KB
  465. MeEdu-master/config/filesystems.php 3.11KB
  466. MeEdu-master/config/hashing.php 1.62KB
  467. MeEdu-master/config/jwt.php 9.66KB
  468. MeEdu-master/config/logging.php 2.58KB
  469. MeEdu-master/config/mail.php 4.2KB
  470. MeEdu-master/config/meedu.php 7.28KB
  471. MeEdu-master/config/pay.php 2.37KB
  472. MeEdu-master/config/purifier.php 3.9KB
  473. MeEdu-master/config/queue.php 2.6KB
  474. MeEdu-master/config/services.php 1.21KB
  475. MeEdu-master/config/session.php 6.8KB
  476. MeEdu-master/config/sms.php 824B
  477. MeEdu-master/config/tencent.php 376B
  478. MeEdu-master/config/view.php 1.06KB
  479. MeEdu-master/database/
  480. MeEdu-master/database/.gitignore 9B
  481. MeEdu-master/database/factories/
  482. MeEdu-master/database/factories/AdFromFactory.php 306B
  483. MeEdu-master/database/factories/AdFromNumberFactory.php 436B
  484. MeEdu-master/database/factories/AdministratorFactory.php 415B
  485. MeEdu-master/database/factories/AdministratorRoleFactory.php 369B
  486. MeEdu-master/database/factories/AnnouncementFactory.php 484B
  487. MeEdu-master/database/factories/CourseCategoryFactory.php 428B
  488. MeEdu-master/database/factories/CourseChapterFactory.php 442B
  489. MeEdu-master/database/factories/CourseCommentFactory.php 387B
  490. MeEdu-master/database/factories/CourseFactory.php 1.07KB
  491. MeEdu-master/database/factories/CourseUserRecordsFactory.php 505B
  492. MeEdu-master/database/factories/CourseVideoFactory.php 1.3KB
  493. MeEdu-master/database/factories/IndexBannerFactory.php 340B
  494. MeEdu-master/database/factories/LinkFactory.php 342B
  495. MeEdu-master/database/factories/NavFactory.php 512B
  496. MeEdu-master/database/factories/OrderFactory.php 609B
  497. MeEdu-master/database/factories/OrderGoodsFactory.php 880B
  498. MeEdu-master/database/factories/OrderPaidRecordFactory.php 547B
  499. MeEdu-master/database/factories/PromoCodeFactory.php 495B
  500. MeEdu-master/database/factories/RoleFactory.php 431B
  501. MeEdu-master/database/factories/SliderFactory.php 657B
  502. MeEdu-master/database/factories/SocailiteFactory.php 501B
  503. MeEdu-master/database/factories/UserCourseFactory.php 739B
  504. MeEdu-master/database/factories/UserCreditRecordFactory.php 367B
  505. MeEdu-master/database/factories/UserFactory.php 1.2KB
  506. MeEdu-master/database/factories/UserInviteBalanceRecordFactory.php 333B
  507. MeEdu-master/database/factories/UserInviteBalanceWithdrawOrderFactory.php 578B
  508. MeEdu-master/database/factories/UserLikeCourseFactory.php 399B
  509. MeEdu-master/database/factories/UserRoleJoinFactory.php 647B
  510. MeEdu-master/database/factories/UserSocialiteFactory.php 519B
  511. MeEdu-master/database/factories/UserVideoFactory.php 738B
  512. MeEdu-master/database/factories/VideoCommentFactory.php 597B
  513. MeEdu-master/database/migrations/
  514. MeEdu-master/database/migrations/2014_10_12_000000_create_users_table.php 1.19KB
  515. MeEdu-master/database/migrations/2018_06_10_093350_create_course_table.php 1.44KB
  516. MeEdu-master/database/migrations/2018_06_10_093941_create_video_table.php 1.51KB
  517. MeEdu-master/database/migrations/2018_06_11_140429_create_administrators_table.php 1.08KB
  518. MeEdu-master/database/migrations/2018_06_11_140557_create_administrator_roles_table.php 900B
  519. MeEdu-master/database/migrations/2018_06_11_140702_create_administrator_role_relation_tbale.php 771B
  520. MeEdu-master/database/migrations/2018_06_11_140936_create_administrator_permissions_table.php 1KB
  521. MeEdu-master/database/migrations/2018_06_11_141132_create_administrator_role_permission_relation_table.php 800B
  522. MeEdu-master/database/migrations/2018_06_24_055643_add_charge_column_for_videos_table.php 774B
  523. MeEdu-master/database/migrations/2018_08_24_111310_create_sms_records_table.php 913B
  524. MeEdu-master/database/migrations/2018_08_25_122014_create_course_comments_table.php 871B
  525. MeEdu-master/database/migrations/2018_08_25_122026_create_video_comments_table.php 867B
  526. MeEdu-master/database/migrations/2018_08_28_194051_create_user_course_table.php 775B
  527. MeEdu-master/database/migrations/2018_08_28_201555_create_roles_table.php 1.06KB
  528. MeEdu-master/database/migrations/2018_08_28_201633_add_role_id_column_for_users_table.php 903B
  529. MeEdu-master/database/migrations/2018_08_28_202328_create_user_join_role_records_table.php 961B
  530. MeEdu-master/database/migrations/2018_08_29_202834_create_notifications_table.php 867B
  531. MeEdu-master/database/migrations/2018_08_29_203905_create_jobs_table.php 946B
  532. MeEdu-master/database/migrations/2018_08_30_200622_add_charge_column_for_user_course_table.php 774B
  533. MeEdu-master/database/migrations/2018_08_30_202222_create_user_video_table.php 841B
  534. MeEdu-master/database/migrations/2018_09_03_202544_create_orders_table.php 1.04KB
  535. MeEdu-master/database/migrations/2018_09_16_110336_create_email_subscriptions_table.php 750B
  536. MeEdu-master/database/migrations/2018_09_16_113005_create_announcements_table.php 791B
  537. MeEdu-master/database/migrations/2018_10_07_101347_add_aliyun_video_id_column_for_videos.php 773B
  538. MeEdu-master/database/migrations/2018_10_23_101556_create_administrator_menus_table.php 998B
  539. MeEdu-master/database/migrations/2018_10_26_102622_create_order_goods_table.php 1.06KB
  540. MeEdu-master/database/migrations/2018_10_26_102656_adjust_orders_table.php 1.04KB
  541. MeEdu-master/database/migrations/2018_11_22_194642_create_ad_froms_table.php 759B
  542. MeEdu-master/database/migrations/2018_11_22_194828_create_ad_from_number_table.php 806B
  543. MeEdu-master/database/migrations/2018_11_24_205824_create_links_table.php 792B
  544. MeEdu-master/database/migrations/2018_12_06_082850_create_course_chapter_table.php 777B
  545. MeEdu-master/database/migrations/2018_12_06_192345_add_sort_column_for_course_chapter_table.php 758B
  546. MeEdu-master/database/migrations/2018_12_06_192755_add_chapter_id_for_videos_table.php 746B
  547. MeEdu-master/database/migrations/2018_12_12_214600_create_navs_table.php 836B
  548. MeEdu-master/database/migrations/2018_12_12_221538_create_socialite_table.php 900B
  549. MeEdu-master/database/migrations/2018_12_22_112124_add_duration_column_for_videos_table.php 781B
  550. MeEdu-master/database/migrations/2018_12_25_222045_add_is_show_column_for_roles_table.php 775B
  551. MeEdu-master/database/migrations/2019_02_19_200047_add_payment_column_for_orders_table.php 903B
  552. MeEdu-master/database/migrations/2019_02_23_130633_create_failed_jobs_table.php 875B
  553. MeEdu-master/database/migrations/2019_03_26_222210_add_tencent_video_id_column_for_videos.php 793B
  554. MeEdu-master/database/migrations/2019_12_22_120342_change_course_comment_content_field.php 1.2KB
  555. MeEdu-master/database/migrations/2019_12_22_120357_change_video_comment_content_field.php 1.19KB
  556. MeEdu-master/database/migrations/2019_12_22_121813_change_course_description_field.php 1.06KB
  557. MeEdu-master/database/migrations/2019_12_22_121825_change_video_description_field.php 1.06KB
  558. MeEdu-master/database/migrations/2019_12_27_194525_alter_order_goods_table.php 850B
  559. MeEdu-master/database/migrations/2020_01_08_121811_add_invite_column_for_users.php 1.05KB
  560. MeEdu-master/database/migrations/2020_01_08_122439_create_promo_codes_table.php 1.3KB
  561. MeEdu-master/database/migrations/2020_01_08_145811_create_order_paid_records_table.php 1.13KB
  562. MeEdu-master/database/migrations/2020_01_08_161753_create_user_invite_balance_records_table.php 1005B
  563. MeEdu-master/database/migrations/2020_01_11_162610_create_course_categories_table.php 1.09KB
  564. MeEdu-master/database/migrations/2020_01_11_165825_add_category_id_for_course_table.php 772B
  565. MeEdu-master/database/migrations/2020_01_15_122836_create_invite_balance_withdraw_records_table.php 1.4KB
  566. MeEdu-master/database/migrations/2020_01_30_170310_create_cache_table.php 729B
  567. MeEdu-master/database/migrations/2020_02_05_164322_add_is_recom_column_for_courses_table.php 778B
  568. MeEdu-master/database/migrations/2020_02_21_145619_create_sliders_table.php 834B
  569. MeEdu-master/database/migrations/2020_02_21_152347_add_title_column_for_announcement_table.php 932B
  570. MeEdu-master/database/migrations/2020_02_24_140733_add_user_count_column_for_course_table.php 779B
  571. MeEdu-master/database/migrations/2020_02_24_140813_create_course_user_records_table.php 912B
  572. MeEdu-master/database/migrations/2020_02_28_145527_add_is_password_set_column_for_users_table.php 808B
  573. MeEdu-master/database/migrations/2020_03_02_095800_add_is_set_nickname_column_for_users_table.php 802B
  574. MeEdu-master/database/migrations/2020_03_04_133129_create_user_like_courses_table.php 880B
  575. MeEdu-master/database/migrations/2020_03_07_175130_create_index_banners_table.php 932B
  576. MeEdu-master/database/migrations/2020_05_02_112023_create_user_video_watch_records_table.php 1.09KB
  577. MeEdu-master/database/migrations/2020_05_02_112648_add_is_watched_column_for_user_course_records_table.php 944B
  578. MeEdu-master/database/migrations/2020_05_10_161748_add_is_free_column_courses_table.php 776B
  579. MeEdu-master/database/migrations/2020_05_10_161807_add_is_ban_sell_column_videos_table.php 790B
  580. MeEdu-master/database/migrations/2020_05_21_110416_add_is_used_promo_code_column_for_users.php 800B
  581. MeEdu-master/database/migrations/2020_05_21_135128_add_register_ip_column_for_users.php 908B
  582. MeEdu-master/database/migrations/2020_05_24_221058_add_progress_column_for_course_user_records_table.php 807B
  583. MeEdu-master/database/migrations/2020_06_08_153953_add_column_administrator_tables.php 931B
  584. MeEdu-master/database/migrations/2020_06_08_154009_add_column_adm_permissions_tables.php 916B
  585. MeEdu-master/database/migrations/2020_06_17_195229_create_user_credit_records_table.php 1.03KB
  586. MeEdu-master/database/migrations/2020_06_20_001804_create_course_attach_tables.php 1.35KB
  587. MeEdu-master/database/migrations/2020_06_24_123756_create_webconfig_table.php 1.47KB
  588. MeEdu-master/database/migrations/2020_06_25_223639_add_comment_status_column_for_courses_table.php 819B
  589. MeEdu-master/database/migrations/2020_06_26_132235_add_some_field_for_videos_table.php 1.3KB
  590. MeEdu-master/database/migrations/2020_06_26_223017_modify_adm_menus_table.php 1.29KB
  591. MeEdu-master/database/migrations/2020_06_29_172741_add_is_show_column_for_app_config.php 778B
  592. MeEdu-master/database/migrations/2020_07_23_121253_create_user_login_records.php 1.07KB
  593. MeEdu-master/database/migrations/2020_07_23_121304_add_login_info_column_for_users.php 789B
  594. MeEdu-master/database/migrations/2020_07_24_135656_add_active_routes_for_navs.php 763B
  595. MeEdu-master/database/migrations/2020_07_27_151657_add_platform_column_for_sliders.php 764B
  596. MeEdu-master/database/migrations/2020_08_31_095138_add_goods_column_for_order_goods_table.php 929B
  597. MeEdu-master/database/migrations/2020_09_02_163437_create_user_tags_table.php 758B
  598. MeEdu-master/database/migrations/2020_09_02_163441_create_user_tag_table.php 693B
  599. MeEdu-master/database/migrations/2020_09_03_111458_create_user_remarks_table.php 834B
  600. MeEdu-master/database/migrations/2020_09_04_130615_create_mp_wechat_message_reply_table.php 1.35KB
  601. MeEdu-master/database/migrations/2020_09_24_222925_add_platform_column_for_navs_table.php 881B
  602. MeEdu-master/database/migrations/2020_09_25_162213_create_user_watch_stat_table.php 1.15KB
  603. MeEdu-master/database/migrations/2020_10_28_132558_create_user_profiles_table.php 1.78KB
  604. MeEdu-master/database/migrations/2020_12_10_155045_add_blank_column_for_navs_table.php 770B
  605. MeEdu-master/database/migrations/2021_04_18_170446_add_unique_id_column_for_socialites.php 796B
  606. MeEdu-master/database/seeds/
  607. MeEdu-master/database/seeds/AdministratorMenuSeeder.php 6.71KB
  608. MeEdu-master/database/seeds/AdministratorPermissionSeeder.php 38.29KB
  609. MeEdu-master/database/seeds/AdministratorSuperSeeder.php 674B
  610. MeEdu-master/database/seeds/AppConfigSeeder.php 37.34KB
  611. MeEdu-master/database/seeds/CourseVideoSeeder.php 354B
  612. MeEdu-master/database/seeds/DatabaseSeeder.php 363B
  613. MeEdu-master/database/seeds/UserSeeder.php 347B
  614. MeEdu-master/docker-compose.yml 1001B
  615. MeEdu-master/docker/
  616. MeEdu-master/docker/Dockerfile 1.04KB
  617. MeEdu-master/docker/mysql/
  618. MeEdu-master/docker/mysql/data/
  619. MeEdu-master/docker/mysql/data/.gitignore 13B
  620. MeEdu-master/docker/mysql/logs/
  621. MeEdu-master/docker/mysql/logs/.gitignore 13B
  622. MeEdu-master/docker/nginx/
  623. MeEdu-master/docker/nginx/conf.d/
  624. MeEdu-master/docker/nginx/conf.d/.gitignore 27B
  625. MeEdu-master/docker/nginx/conf.d/default.conf 1.62KB
  626. MeEdu-master/docker/nginx/logs/
  627. MeEdu-master/docker/nginx/logs/.gitignore 13B
  628. MeEdu-master/docker/nginx/ssl/
  629. MeEdu-master/docker/nginx/ssl/.gitignore 13B
  630. MeEdu-master/docs/
  631. MeEdu-master/docs/.gitignore 9B
  632. MeEdu-master/docs/contact/
  633. MeEdu-master/docs/contact/wechat1.png 83.28KB
  634. MeEdu-master/docs/安装教程.md 3.09KB
  635. MeEdu-master/package.json 1.1KB
  636. MeEdu-master/phpunit.xml 1.76KB
  637. MeEdu-master/public/
  638. MeEdu-master/public/.htaccess 593B
  639. MeEdu-master/public/addons/
  640. MeEdu-master/public/addons/.gitignore 13B
  641. MeEdu-master/public/favicon.ico 16.56KB
  642. MeEdu-master/public/frontend/
  643. MeEdu-master/public/frontend/css/
  644. MeEdu-master/public/frontend/css/frontend.css 189.57KB
  645. MeEdu-master/public/frontend/js/
  646. MeEdu-master/public/frontend/js/frontend.js 768.03KB
  647. MeEdu-master/public/frontend/js/frontend.js.LICENSE.txt 822B
  648. MeEdu-master/public/h5/
  649. MeEdu-master/public/h5/css/
  650. MeEdu-master/public/h5/css/app.css 172.99KB
  651. MeEdu-master/public/h5/css/iconfont/
  652. MeEdu-master/public/h5/css/iconfont/iconfont.css 11.25KB
  653. MeEdu-master/public/h5/css/iconfont/iconfont.eot 11.34KB
  654. MeEdu-master/public/h5/css/iconfont/iconfont.js 45.51KB
  655. MeEdu-master/public/h5/css/iconfont/iconfont.json 7.14KB
  656. MeEdu-master/public/h5/css/iconfont/iconfont.svg 44.57KB
  657. MeEdu-master/public/h5/css/iconfont/iconfont.ttf 11.18KB
  658. MeEdu-master/public/h5/css/iconfont/iconfont.woff 7.61KB
  659. MeEdu-master/public/h5/css/iconfont/iconfont.woff2 6.41KB
  660. MeEdu-master/public/h5/images/
  661. MeEdu-master/public/h5/images/icons/
  662. MeEdu-master/public/h5/images/icons/back-white.png 1.04KB
  663. MeEdu-master/public/h5/images/icons/back.png 1.67KB
  664. MeEdu-master/public/h5/images/icons/close.png 693B
  665. MeEdu-master/public/h5/images/icons/course.png 1.15KB
  666. MeEdu-master/public/h5/images/icons/credit1.png 2.64KB
  667. MeEdu-master/public/h5/images/icons/logout.png 1.6KB
  668. MeEdu-master/public/h5/images/icons/order.png 3.36KB
  669. MeEdu-master/public/h5/images/icons/search.png 1.99KB
  670. MeEdu-master/public/h5/images/icons/user.png 3.29KB
  671. MeEdu-master/public/h5/images/icons/vip.png 2.12KB
  672. MeEdu-master/public/h5/js/
  673. MeEdu-master/public/h5/js/app.js 675.97KB
  674. MeEdu-master/public/h5/js/app.js.LICENSE.txt 346B
  675. MeEdu-master/public/h5/js/zepto-touch.js 7.98KB
  676. MeEdu-master/public/images/
  677. MeEdu-master/public/images/close.png 734B
  678. MeEdu-master/public/images/default_avatar.jpg 27.4KB
  679. MeEdu-master/public/images/icons/
  680. MeEdu-master/public/images/icons/alipay.png 7.67KB
  681. MeEdu-master/public/images/icons/course-hover.png 1.42KB
  682. MeEdu-master/public/images/icons/course.png 1.15KB
  683. MeEdu-master/public/images/icons/handpay.png 5.03KB
  684. MeEdu-master/public/images/icons/index-banner-course.png 1.79KB
  685. MeEdu-master/public/images/icons/like-hover.png 1.37KB
  686. MeEdu-master/public/images/icons/like.png 1.15KB
  687. MeEdu-master/public/images/icons/logout.png 1.6KB
  688. MeEdu-master/public/images/icons/member/
  689. MeEdu-master/public/images/icons/member/course.png 603B
  690. MeEdu-master/public/images/icons/member/credit1-active.png 2.64KB
  691. MeEdu-master/public/images/icons/member/credit1-page-1.png 16.12KB
  692. MeEdu-master/public/images/icons/member/credit1.png 1.13KB
  693. MeEdu-master/public/images/icons/member/invite.png 935B
  694. MeEdu-master/public/images/icons/member/message.png 845B
  695. MeEdu-master/public/images/icons/member/nickname-edit.png 745B
  696. MeEdu-master/public/images/icons/member/order.png 1.64KB
  697. MeEdu-master/public/images/icons/member/profile.png 704B
  698. MeEdu-master/public/images/icons/member/promo_code_intro.png 21.7KB
  699. MeEdu-master/public/images/icons/member/vip-logo-hover.png 101.08KB
  700. MeEdu-master/public/images/icons/member/vip-logo.png 76.17KB
  701. MeEdu-master/public/images/icons/member/vip.png 2.12KB
  702. MeEdu-master/public/images/icons/message.png 1.25KB
  703. MeEdu-master/public/images/icons/none.png 17.68KB
  704. MeEdu-master/public/images/icons/order-goods.png 1.17KB
  705. MeEdu-master/public/images/icons/order.png 1.98KB
  706. MeEdu-master/public/images/icons/paid.png 4.26KB
  707. MeEdu-master/public/images/icons/player-hover.png 1.87KB
  708. MeEdu-master/public/images/icons/player.png 1.06KB
  709. MeEdu-master/public/images/icons/profile.png 1.15KB
  710. MeEdu-master/public/images/icons/qq.png 1.85KB
  711. MeEdu-master/public/images/icons/qq.svg 1.63KB
  712. MeEdu-master/public/images/icons/right.png 324B
  713. MeEdu-master/public/images/icons/uploadImage.png 5.41KB
  714. MeEdu-master/public/images/icons/vip.jpg 19.14KB
  715. MeEdu-master/public/images/icons/vip.png 1.91KB
  716. MeEdu-master/public/images/icons/wechat-pay.png 7.65KB
  717. MeEdu-master/public/images/icons/wechat.svg 1.62KB
  718. MeEdu-master/public/images/logo.png 9.18KB
  719. MeEdu-master/public/images/meedu.png 43.75KB
  720. MeEdu-master/public/images/member-bg.png 12.48KB
  721. MeEdu-master/public/images/player-thumb.png 56.51KB
  722. MeEdu-master/public/images/role-center.png 9.76KB
  723. MeEdu-master/public/images/white-logo.png 7.14KB
  724. MeEdu-master/public/index.php 1.78KB
  725. MeEdu-master/public/install.php 13.3KB
  726. MeEdu-master/public/js/
  727. MeEdu-master/public/js/aliplayercomponents-1.0.3.min.js 117.69KB
  728. MeEdu-master/public/mix-manifest.json 303B
  729. MeEdu-master/public/robots.txt 24B
  730. MeEdu-master/public/templates/
  731. MeEdu-master/public/templates/.gitignore 13B
  732. MeEdu-master/resources/
  733. MeEdu-master/resources/assets/
  734. MeEdu-master/resources/assets/frontend/
  735. MeEdu-master/resources/assets/frontend/js/
  736. MeEdu-master/resources/assets/frontend/js/app.js 19.5KB
  737. MeEdu-master/resources/assets/frontend/js/bootstrap.js 1.76KB
  738. MeEdu-master/resources/assets/frontend/sass/
  739. MeEdu-master/resources/assets/frontend/sass/_variables.scss
  740. MeEdu-master/resources/assets/frontend/sass/app.scss 49.74KB
  741. MeEdu-master/resources/assets/h5/
  742. MeEdu-master/resources/assets/h5/js/
  743. MeEdu-master/resources/assets/h5/js/app.js 12.14KB
  744. MeEdu-master/resources/assets/h5/js/bootstrap.js 1.74KB
  745. MeEdu-master/resources/assets/h5/sass/
  746. MeEdu-master/resources/assets/h5/sass/app.scss 36.4KB
  747. MeEdu-master/resources/lang/
  748. MeEdu-master/resources/lang/en.json 6.22KB
  749. MeEdu-master/resources/lang/en/
  750. MeEdu-master/resources/lang/en/auth.php 617B
  751. MeEdu-master/resources/lang/en/pagination.php 534B
  752. MeEdu-master/resources/lang/en/passwords.php 786B
  753. MeEdu-master/resources/lang/en/validation.php 6.47KB
  754. MeEdu-master/resources/lang/zh.json 6.77KB
  755. MeEdu-master/resources/lang/zh/
  756. MeEdu-master/resources/lang/zh/auth.php 575B
  757. MeEdu-master/resources/lang/zh/pagination.php 540B
  758. MeEdu-master/resources/lang/zh/passwords.php 747B
  759. MeEdu-master/resources/lang/zh/validation.php 6.47KB
  760. MeEdu-master/resources/views/
  761. MeEdu-master/resources/views/errors/
  762. MeEdu-master/resources/views/errors/404.blade.php 1.44KB
  763. MeEdu-master/resources/views/frontend/
  764. MeEdu-master/resources/views/frontend/announcement/
  765. MeEdu-master/resources/views/frontend/announcement/show.blade.php 719B
  766. MeEdu-master/resources/views/frontend/auth/
  767. MeEdu-master/resources/views/frontend/auth/login.blade.php 3.69KB
  768. MeEdu-master/resources/views/frontend/auth/passwords/
  769. MeEdu-master/resources/views/frontend/auth/passwords/find.blade.php 1.85KB
  770. MeEdu-master/resources/views/frontend/auth/register.blade.php 2.45KB
  771. MeEdu-master/resources/views/frontend/auth/wechat_scan_login.blade.php 1.79KB
  772. MeEdu-master/resources/views/frontend/components/
  773. MeEdu-master/resources/views/frontend/components/course-item.blade.php 952B
  774. MeEdu-master/resources/views/frontend/components/mobile.blade.php 1.19KB
  775. MeEdu-master/resources/views/frontend/components/none.blade.php 240B
  776. MeEdu-master/resources/views/frontend/components/player/
  777. MeEdu-master/resources/views/frontend/components/player/aliyun.blade.php 4.92KB
  778. MeEdu-master/resources/views/frontend/components/player/tencent.blade.php 2.26KB
  779. MeEdu-master/resources/views/frontend/components/player/xg.blade.php 1.65KB
  780. MeEdu-master/resources/views/frontend/components/recom_courses.blade.php 555B
  781. MeEdu-master/resources/views/frontend/course/
  782. MeEdu-master/resources/views/frontend/course/index.blade.php 2.38KB
  783. MeEdu-master/resources/views/frontend/course/show.blade.php 14.34KB
  784. MeEdu-master/resources/views/frontend/index/
  785. MeEdu-master/resources/views/frontend/index/aboutus.blade.php 435B
  786. MeEdu-master/resources/views/frontend/index/index.blade.php 3.59KB
  787. MeEdu-master/resources/views/frontend/index/user_private_protocol.blade.php 361B
  788. MeEdu-master/resources/views/frontend/index/user_protocol.blade.php 355B
  789. MeEdu-master/resources/views/frontend/member/
  790. MeEdu-master/resources/views/frontend/member/avatar.blade.php 1.25KB
  791. MeEdu-master/resources/views/frontend/member/buy_course.blade.php 3.66KB
  792. MeEdu-master/resources/views/frontend/member/buy_video.blade.php 2.57KB
  793. MeEdu-master/resources/views/frontend/member/credit1_records.blade.php 3.69KB
  794. MeEdu-master/resources/views/frontend/member/index.blade.php 10.25KB
  795. MeEdu-master/resources/views/frontend/member/invite_balance_orders.blade.php 3.47KB
  796. MeEdu-master/resources/views/frontend/member/invite_balances.blade.php 1.72KB
  797. MeEdu-master/resources/views/frontend/member/join_role_records.blade.php 1.64KB
  798. MeEdu-master/resources/views/frontend/member/messages.blade.php 1.54KB
  799. MeEdu-master/resources/views/frontend/member/mobile_bind.blade.php 978B
  800. MeEdu-master/resources/views/frontend/member/orders.blade.php 2.44KB
  801. MeEdu-master/resources/views/frontend/member/password_reset.blade.php 1.68KB
  802. MeEdu-master/resources/views/frontend/member/promo_code.blade.php 7.9KB
  803. MeEdu-master/resources/views/frontend/member/socialite.blade.php 1.91KB
  804. MeEdu-master/resources/views/frontend/order/
  805. MeEdu-master/resources/views/frontend/order/create.blade.php 3.92KB
  806. MeEdu-master/resources/views/frontend/order/hand_pay.blade.php 1.24KB
  807. MeEdu-master/resources/views/frontend/order/show.blade.php 3.18KB
  808. MeEdu-master/resources/views/frontend/order/success.blade.php 1.12KB
  809. MeEdu-master/resources/views/frontend/order/wechat.blade.php 1.2KB
  810. MeEdu-master/resources/views/frontend/role/
  811. MeEdu-master/resources/views/frontend/role/index.blade.php 1.73KB
  812. MeEdu-master/resources/views/frontend/search/
  813. MeEdu-master/resources/views/frontend/search/index.blade.php 1.4KB
  814. MeEdu-master/resources/views/frontend/video/
  815. MeEdu-master/resources/views/frontend/video/index.blade.php 1.29KB
  816. MeEdu-master/resources/views/frontend/video/show.blade.php 15.03KB
  817. MeEdu-master/resources/views/h5/
  818. MeEdu-master/resources/views/h5/announcement/
  819. MeEdu-master/resources/views/h5/announcement/show.blade.php 333B
  820. MeEdu-master/resources/views/h5/auth/
  821. MeEdu-master/resources/views/h5/auth/login.blade.php 3.98KB
  822. MeEdu-master/resources/views/h5/auth/passwords/
  823. MeEdu-master/resources/views/h5/auth/passwords/find.blade.php 1.13KB
  824. MeEdu-master/resources/views/h5/auth/register.blade.php 1.62KB
  825. MeEdu-master/resources/views/h5/components/
  826. MeEdu-master/resources/views/h5/components/course.blade.php 658B
  827. MeEdu-master/resources/views/h5/components/mobile.blade.php 746B
  828. MeEdu-master/resources/views/h5/components/none.blade.php 196B
  829. MeEdu-master/resources/views/h5/components/player/
  830. MeEdu-master/resources/views/h5/components/player/aliyun.blade.php 4.29KB
  831. MeEdu-master/resources/views/h5/components/player/tencent.blade.php 1.57KB
  832. MeEdu-master/resources/views/h5/components/player/xg.blade.php 1.77KB
  833. MeEdu-master/resources/views/h5/components/tabbar.blade.php 758B
  834. MeEdu-master/resources/views/h5/components/topbar.blade.php 440B
  835. MeEdu-master/resources/views/h5/components/wechat-jssdk.blade.php 890B
  836. MeEdu-master/resources/views/h5/course/
  837. MeEdu-master/resources/views/h5/course/index.blade.php 1.85KB
  838. MeEdu-master/resources/views/h5/course/show.blade.php 8.07KB
  839. MeEdu-master/resources/views/h5/index/
  840. MeEdu-master/resources/views/h5/index/aboutus.blade.php 435B
  841. MeEdu-master/resources/views/h5/index/index.blade.php 1.8KB
  842. MeEdu-master/resources/views/h5/index/user_private_protocol.blade.php 361B
  843. MeEdu-master/resources/views/h5/index/user_protocol.blade.php 355B
  844. MeEdu-master/resources/views/h5/member/
  845. MeEdu-master/resources/views/h5/member/buy_course.blade.php 2.45KB
  846. MeEdu-master/resources/views/h5/member/credit1_records.blade.php 790B
  847. MeEdu-master/resources/views/h5/member/index.blade.php 4.29KB
  848. MeEdu-master/resources/views/h5/member/messages.blade.php 864B
  849. MeEdu-master/resources/views/h5/member/mobile_bind.blade.php 604B
  850. MeEdu-master/resources/views/h5/member/orders.blade.php 1.2KB
  851. MeEdu-master/resources/views/h5/member/profile.blade.php 6.97KB
  852. MeEdu-master/resources/views/h5/member/promo_code.blade.php 6.37KB
  853. MeEdu-master/resources/views/h5/order/
  854. MeEdu-master/resources/views/h5/order/create.blade.php 2.87KB
  855. MeEdu-master/resources/views/h5/order/hand_pay.blade.php 806B
  856. MeEdu-master/resources/views/h5/order/success.blade.php 400B
  857. MeEdu-master/resources/views/h5/order/wechat-jsapi-pay.blade.php 1.68KB
  858. MeEdu-master/resources/views/h5/role/
  859. MeEdu-master/resources/views/h5/role/index.blade.php 1.14KB
  860. MeEdu-master/resources/views/h5/search/
  861. MeEdu-master/resources/views/h5/search/index.blade.php 1002B
  862. MeEdu-master/resources/views/h5/video/
  863. MeEdu-master/resources/views/h5/video/show.blade.php 9.61KB
  864. MeEdu-master/resources/views/layouts/
  865. MeEdu-master/resources/views/layouts/app-active.blade.php 6.48KB
  866. MeEdu-master/resources/views/layouts/app.blade.php 7.18KB
  867. MeEdu-master/resources/views/layouts/common/
  868. MeEdu-master/resources/views/layouts/common/footer.blade.php 10.82KB
  869. MeEdu-master/resources/views/layouts/common/header.blade.php 986B
  870. MeEdu-master/resources/views/layouts/h5-pure.blade.php 1.74KB
  871. MeEdu-master/resources/views/layouts/h5.blade.php 2.49KB
  872. MeEdu-master/resources/views/layouts/member.blade.php 3.53KB
  873. MeEdu-master/routes/
  874. MeEdu-master/routes/api.php 163B
  875. MeEdu-master/routes/apiv2.php 5.17KB
  876. MeEdu-master/routes/backend-api.php 13.26KB
  877. MeEdu-master/routes/channels.php 5B
  878. MeEdu-master/routes/web.php 8.18KB
  879. MeEdu-master/server.php 522B
  880. MeEdu-master/storage/
  881. MeEdu-master/storage/app/
  882. MeEdu-master/storage/app/.gitignore 44B
  883. MeEdu-master/storage/app/public/
  884. MeEdu-master/storage/app/public/.gitignore 14B
  885. MeEdu-master/storage/app/templates/
  886. MeEdu-master/storage/app/templates/.gitignore 13B
  887. MeEdu-master/storage/framework/
  888. MeEdu-master/storage/framework/.gitignore 103B
  889. MeEdu-master/storage/framework/cache/
  890. MeEdu-master/storage/framework/cache/.gitignore 20B
  891. MeEdu-master/storage/framework/cache/data/
  892. MeEdu-master/storage/framework/cache/data/.gitignore 14B
  893. MeEdu-master/storage/framework/sessions/
  894. MeEdu-master/storage/framework/sessions/.gitignore 14B
  895. MeEdu-master/storage/framework/testing/
  896. MeEdu-master/storage/framework/testing/.gitignore 14B
  897. MeEdu-master/storage/framework/views/
  898. MeEdu-master/storage/framework/views/.gitignore 14B
  899. MeEdu-master/storage/logs/
  900. MeEdu-master/storage/logs/.gitignore 14B
  901. MeEdu-master/templates/
  902. MeEdu-master/templates/.gitignore 13B
  903. MeEdu-master/tests/
  904. MeEdu-master/tests/Commands/
  905. MeEdu-master/tests/Commands/AddonsProviderMapGeneratorTest.php 498B
  906. MeEdu-master/tests/Commands/ApplicationInstallCommandTest.php 3.71KB
  907. MeEdu-master/tests/Commands/InstallLockCommandTest.php 602B
  908. MeEdu-master/tests/Commands/MemberRoleExpiredHandlerCommandTest.php 329B
  909. MeEdu-master/tests/Commands/OrderHandlerCommandTest.php 1.55KB
  910. MeEdu-master/tests/Commands/OrderPayTimeoutCommandTest.php 1.57KB
  911. MeEdu-master/tests/Commands/TemplatePublicLinkCommandTest.php 950B
  912. MeEdu-master/tests/CreatesApplication.php 550B
  913. MeEdu-master/tests/Feature/
  914. MeEdu-master/tests/Feature/Api/
  915. MeEdu-master/tests/Feature/Api/V2/
  916. MeEdu-master/tests/Feature/Api/V2/Base.php 763B
  917. MeEdu-master/tests/Feature/Api/V2/CaptchaImageTest.php 296B
  918. MeEdu-master/tests/Feature/Api/V2/CaptchaSmsTest.php 1.53KB
  919. MeEdu-master/tests/Feature/Api/V2/CourseCategoriesTest.php 551B
  920. MeEdu-master/tests/Feature/Api/V2/CourseTest.php 7.46KB
  921. MeEdu-master/tests/Feature/Api/V2/LoginTest.php 2.96KB
  922. MeEdu-master/tests/Feature/Api/V2/MemberTest.php 16.37KB
  923. MeEdu-master/tests/Feature/Api/V2/OrderTest.php 8.4KB
  924. MeEdu-master/tests/Feature/Api/V2/PasswordTest.php 2.51KB
  925. MeEdu-master/tests/Feature/Api/V2/PromoCodeTest.php 946B
  926. MeEdu-master/tests/Feature/Api/V2/RegisterTest.php 2.03KB
  927. MeEdu-master/tests/Feature/Api/V2/RoleTest.php 427B
  928. MeEdu-master/tests/Feature/Api/V2/VideoTest.php 12.44KB
  929. MeEdu-master/tests/Feature/BackendApi/
  930. MeEdu-master/tests/Feature/BackendApi/AdFromTest.php 2.39KB
  931. MeEdu-master/tests/Feature/BackendApi/AdministratorTest.php 2.26KB
  932. MeEdu-master/tests/Feature/BackendApi/AnnouncementTest.php 2.44KB
  933. MeEdu-master/tests/Feature/BackendApi/Base.php 832B
  934. MeEdu-master/tests/Feature/BackendApi/CourseCategoryTest.php 2.4KB
  935. MeEdu-master/tests/Feature/BackendApi/DashboardTest.php 867B
  936. MeEdu-master/tests/Feature/BackendApi/IndexBannerTest.php 2.5KB
  937. MeEdu-master/tests/Feature/BackendApi/LinkTest.php 2.48KB
  938. MeEdu-master/tests/Feature/BackendApi/LoginTest.php 1.44KB
  939. MeEdu-master/tests/Feature/BackendApi/NavTest.php 2.48KB
  940. MeEdu-master/tests/Feature/BackendApi/PromoCodeTest.php 2.57KB
  941. MeEdu-master/tests/Feature/BackendApi/RoleTest.php 2.5KB
  942. MeEdu-master/tests/Feature/BackendApi/SliderTest.php 2.49KB
  943. MeEdu-master/tests/Feature/BackendApi/UserTest.php 931B
  944. MeEdu-master/tests/Feature/Page/
  945. MeEdu-master/tests/Feature/Page/AjaxTest.php 28.85KB
  946. MeEdu-master/tests/Feature/Page/AnnouncementTest.php 427B
  947. MeEdu-master/tests/Feature/Page/CourseBuyTest.php 1.75KB
  948. MeEdu-master/tests/Feature/Page/CourseDetailTest.php 3.84KB
  949. MeEdu-master/tests/Feature/Page/CourseListPageTest.php 3.27KB
  950. MeEdu-master/tests/Feature/Page/FindPasswordTest.php 1.19KB
  951. MeEdu-master/tests/Feature/Page/IndexTest.php 660B
  952. MeEdu-master/tests/Feature/Page/LoginTest.php 1.75KB
  953. MeEdu-master/tests/Feature/Page/MemberAvatarTest.php 773B
  954. MeEdu-master/tests/Feature/Page/MemberCourseTest.php 1.11KB
  955. MeEdu-master/tests/Feature/Page/MemberCredit1RecordsTest.php 2.32KB
  956. MeEdu-master/tests/Feature/Page/MemberInviteCodePageTest.php 2.3KB
  957. MeEdu-master/tests/Feature/Page/MemberJoinRoleTest.php 1.19KB
  958. MeEdu-master/tests/Feature/Page/MemberMobileBindTest.php 1.96KB
  959. MeEdu-master/tests/Feature/Page/MemberNotificationTest.php 457B
  960. MeEdu-master/tests/Feature/Page/MemberOrdersTest.php 408B
  961. MeEdu-master/tests/Feature/Page/MemberPageTest.php 428B
  962. MeEdu-master/tests/Feature/Page/MemberPasswordChangeTest.php 1.17KB
  963. MeEdu-master/tests/Feature/Page/MemberSocialiteTest.php 1.14KB
  964. MeEdu-master/tests/Feature/Page/MemberVideoTest.php 1.17KB
  965. MeEdu-master/tests/Feature/Page/RegisterTest.php 1.72KB
  966. MeEdu-master/tests/Feature/Page/RoleBuyTest.php 1.56KB
  967. MeEdu-master/tests/Feature/Page/UserRoleTest.php 695B
  968. MeEdu-master/tests/Feature/Page/VideoBuyPageTest.php 2.82KB
  969. MeEdu-master/tests/Feature/Page/VideoPlayTest.php 1.29KB
  970. MeEdu-master/tests/OriginalTestCase.php 292B
  971. MeEdu-master/tests/Services/
  972. MeEdu-master/tests/Services/Base/
  973. MeEdu-master/tests/Services/Base/ConfigServiceTest.php 896B
  974. MeEdu-master/tests/Services/Course/
  975. MeEdu-master/tests/Services/Course/CourseCategoryServiceTest.php 780B
  976. MeEdu-master/tests/Services/Course/CourseCommentServiceTest.php 2.88KB
  977. MeEdu-master/tests/Services/Course/CourseServiceTest.php 6.91KB
  978. MeEdu-master/tests/Services/Course/VideoCommentServiceTest.php 2.86KB
  979. MeEdu-master/tests/Services/Course/VideoServiceTest.php 7.58KB
  980. MeEdu-master/tests/Services/Member/
  981. MeEdu-master/tests/Services/Member/CreditServiceTest.php 2.38KB
  982. MeEdu-master/tests/Services/Member/DeliverServiceTest.php 2.74KB
  983. MeEdu-master/tests/Services/Member/NotificationServiceTest.php 1.41KB
  984. MeEdu-master/tests/Services/Member/RoleServiceTest.php 3.48KB
  985. MeEdu-master/tests/Services/Member/SocialiteServiceTest.php 2.66KB
  986. MeEdu-master/tests/Services/Member/UserInviteBalanceServiceTest.php 2.92KB
  987. MeEdu-master/tests/Services/Member/UserServiceTest.php 11.88KB
  988. MeEdu-master/tests/Services/Order/
  989. MeEdu-master/tests/Services/Order/OrderServiceTest.php 8.24KB
  990. MeEdu-master/tests/Services/Order/PromoCodeServiceTest.php 3.02KB
  991. MeEdu-master/tests/Services/Other/
  992. MeEdu-master/tests/Services/Other/AdFromServiceTest.php 1.77KB
  993. MeEdu-master/tests/Services/Other/AnnouncementServiceTest.php 2.06KB
  994. MeEdu-master/tests/Services/Other/IndexBannerServiceTest.php 1.22KB
  995. MeEdu-master/tests/Services/Other/LinkServiceTest.php 1.87KB
  996. MeEdu-master/tests/Services/Other/MpWechatServiceTest.php 2.97KB
  997. MeEdu-master/tests/Services/Other/NavServiceTest.php 2.6KB
  998. MeEdu-master/tests/Services/Other/SliderServiceTest.php 2.33KB
  999. MeEdu-master/tests/Services/Other/SmsServiceTest.php 1.01KB
  1000. MeEdu-master/tests/TestCase.php 863B
  1001. MeEdu-master/tests/Unit/
  1002. MeEdu-master/tests/Unit/BusinessStateTest.php 6.93KB
  1003. MeEdu-master/tests/Unit/Events/
  1004. MeEdu-master/tests/Unit/Events/OrderCancelEventTest.php 959B
  1005. MeEdu-master/tests/Unit/Events/PaymentSuccessEventTest.php 906B
  1006. MeEdu-master/tests/Unit/Events/UserInviteBalanceWithdrawHandledEventTest.php 2.18KB
  1007. MeEdu-master/tests/Unit/Events/UserRegisterEventTest.php 1.07KB
  1008. MeEdu-master/tests/Unit/HelperTest.php 1.43KB
  1009. MeEdu-master/tests/Unit/Meedu/
  1010. MeEdu-master/tests/Unit/Meedu/IccTest.php 1.45KB
  1011. MeEdu-master/tests/Unit/Meedu/ServiceProxy/
  1012. MeEdu-master/tests/Unit/Meedu/ServiceProxy/CacheInfoTest.php 643B
  1013. MeEdu-master/tests/Unit/Meedu/ServiceProxy/LimitInfoTest.php 810B
  1014. MeEdu-master/tests/Unit/Meedu/ServiceProxy/LockInfoTest.php 631B
  1015. MeEdu-master/tests/Unit/Meedu/ServiceProxy/ServiceProxyTest.php 272B
  1016. MeEdu-master/tests/Unit/Meedu/VodTest.php 343B
  1017. MeEdu-master/tests/report/
  1018. MeEdu-master/tests/report/.gitignore 13B
  1019. MeEdu-master/webpack.mix.js 788B
  1020. MeEdu-master/yarn.lock 308.41KB
0评论
提交 加载更多评论
其他资源 抓包工具fiddler可执行文件
解压至本地,打开fiddler.exe进行抓取操作
rocketmq-all-5.2.0-source-release.zip
rocketmq-all-5.2.0-source-release.zip
监控网站模板(html+js+css)
内容概要:本资源提供了监控网站的模板,包含 HTML、JS 和 CSS 等相关代码,为用户构建监控网站提供基础架构和样式设计。 适合人群: - 网页开发初学者,希望通过实际项目练习提升技能。 - 有一定基础的前端开发人员,用于快速搭建监控网站原型。 - 对监控网站功能有需求的个人或团队,用于节省开发时间。 能学到什么: - 了解监控网站的页面布局和功能模块设计。 - 掌握 HTML 结构搭建和页面元素的组织。 - 学习 CSS 样式的应用,实现美观的页面展示效果。 - 深入理解 JS 在监控网站中的交互逻辑实现,如数据更新、动态效果等。 阅读建议: - 先整体浏览模板代码,了解各个文件的功能和相互关系。 - 结合代码注释,理解关键部分的实现逻辑和目的。 - 尝试修改代码中的参数和样式,观察页面效果的变化,加深对代码的理解。 - 对于不熟悉的技术点,查阅相关文档和教程进行补充学习。 - 在实际应用中,根据具体需求对模板进行扩展和优化。
myinfer深度学习推理框架
myinfer深度学习推理框架
windows平台32位和64位libgcc.a
跨平台libgcc.a
yolo weights
yolo weights
2024上中小幼教资笔试真题答案(更新中)
内容概要:本资料涵盖了 2024 年上半年小学、幼儿园和中学教资笔试的真题与答案。这些真题及答案于 3.9 开始更新,持续完善中,为考生提供全面且及时的备考资料。 适合人群:正在备考 2024 年上半年小学、幼儿园和中学教资笔试的考生。 能学到什么: ① 了解教资笔试的题型分布和难度水平。 ② 熟悉考试的重点和考点,明确答题思路与方法。 ③ 通过答案解析,掌握正确的解题技巧和知识要点。 阅读建议: ① 考生在使用时,应先独立完成真题,再对照答案进行分析和总结。 ② 对于做错的题目,要重点研究答案解析,找出自己的知识漏洞,进行有针对性的复习。 ③ 结合自身的薄弱环节,有重点地反复练习真题,提高应试能力。
共享打印机,局域网共享打印,机远程打印,前端静默打印插件,小票打印机
共享打印机,局域网共享打印,机远程打印,前端静默打印插件,小票打印机, 详情请查看 :https://blog.csdn.net/cangege123/article/details/140312922