├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js ├── views │ ├── errors │ │ ├── 404.blade.php │ │ ├── 401.blade.php │ │ ├── 419.blade.php │ │ ├── 500.blade.php │ │ ├── 429.blade.php │ │ ├── 503.blade.php │ │ └── 403.blade.php │ ├── dashboard │ │ ├── iframes │ │ │ └── iframe.blade.php │ │ ├── visitor-logs │ │ │ └── date.blade.php │ │ └── layouts │ │ │ └── utils │ │ │ └── _table-sort-th.blade.php │ ├── common │ │ ├── users │ │ │ ├── _items-comment-card.blade.php │ │ │ └── _item-comment-card.blade.php │ │ ├── _google-analytics.blade.php │ │ └── _up-thumbs-card.blade.php │ └── vendor │ │ ├── flash │ │ ├── modal.blade.php │ │ └── message.blade.php │ │ └── pagination │ │ └── simple-default.blade.php └── lang │ └── zh_CN │ ├── pagination.php │ ├── validation-nova-inline.php │ ├── validation-nova.php │ ├── auth.php │ └── passwords.php ├── tests ├── Unit │ └── .gitkeep ├── TestCase.php ├── CreatesApplication.php └── Feature │ └── ApiOfUserTest.php ├── storage ├── logs │ ├── wechat │ │ └── .gitkeep │ ├── heycommunity │ │ └── .gitkeep │ └── .gitignore ├── app │ ├── uploads │ │ └── users │ │ │ └── avatars │ │ │ └── .gitkeep │ ├── public │ │ └── .gitignore │ └── .gitignore ├── debugbar │ └── .gitignore └── framework │ ├── testing │ └── .gitignore │ ├── views │ └── .gitignore │ ├── cache │ ├── data │ │ └── .gitignore │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── Modules ├── Activity │ ├── Console │ │ └── .gitkeep │ ├── Tests │ │ └── Unit │ │ │ └── .gitkeep │ ├── Http │ │ ├── Middleware │ │ │ └── .gitkeep │ │ ├── Requests │ │ │ └── .gitkeep │ │ └── Controllers │ │ │ ├── Controller.php │ │ │ └── Web │ │ │ └── ActivityController.php │ ├── Resources │ │ ├── assets │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── common │ │ │ ├── _activity-lite-card.blade.php │ │ │ └── _activity-profile.blade.php │ │ │ └── web │ │ │ └── index.blade.php │ ├── Config │ │ └── config.php │ ├── Routes │ │ ├── web.php │ │ ├── api.php │ │ └── dashboard.php │ ├── module.json │ ├── Entities │ │ └── ActivityMember.php │ ├── composer.json │ ├── webpack.mix.js │ ├── Database │ │ └── factories │ │ │ └── ActivityMemberFactory.php │ └── package.json ├── Article │ ├── Console │ │ └── .gitkeep │ ├── Http │ │ ├── Requests │ │ │ └── .gitkeep │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Controllers │ │ │ ├── Controller.php │ │ │ └── Web │ │ │ └── ArticleController.php │ ├── Tests │ │ └── Unit │ │ │ └── .gitkeep │ ├── Resources │ │ ├── assets │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── web │ │ │ └── _list-group-item-article-card.blade.php │ │ │ └── common │ │ │ └── _article-profile.blade.php │ ├── Config │ │ └── config.php │ ├── Entities │ │ ├── ArticleTagMap.php │ │ ├── ArticleCategoryMap.php │ │ ├── ArticleTag.php │ │ └── ArticleCategory.php │ ├── Routes │ │ ├── web.php │ │ └── api.php │ ├── module.json │ ├── composer.json │ ├── webpack.mix.js │ ├── package.json │ └── Database │ │ └── Migrations │ │ └── 2021_12_20_211845_create_article_tags_table.php └── Post │ ├── Console │ └── .gitkeep │ ├── Tests │ ├── Unit │ │ └── .gitkeep │ └── Feature │ │ └── PostWebTest.php │ ├── Http │ ├── Middleware │ │ └── .gitkeep │ ├── Requests │ │ └── .gitkeep │ └── Controllers │ │ ├── Controller.php │ │ └── Web │ │ └── PostController.php │ ├── Resources │ ├── lang │ │ └── .gitkeep │ ├── assets │ │ ├── js │ │ │ └── app.js │ │ └── sass │ │ │ └── app.scss │ └── views │ │ ├── common │ │ └── _post-list.blade.php │ │ └── web │ │ └── show.blade.php │ ├── Config │ └── config.php │ ├── Routes │ ├── web.php │ ├── dashboard.php │ └── api.php │ ├── module.json │ ├── composer.json │ ├── Entities │ ├── PostImage.php │ └── PostVideo.php │ ├── webpack.mix.js │ ├── Database │ └── factories │ │ ├── PostImageFactory.php │ │ └── PostFactory.php │ └── package.json ├── bootstrap └── cache │ └── .gitignore ├── database ├── .gitignore ├── seeders │ ├── FeedSeeder.php │ └── UserSeeder.php ├── migrations │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_08_18_000000_create_jobs_table.php │ └── 2019_12_14_000001_create_personal_access_tokens_table.php └── factories │ └── Common │ └── CommentFactory.php ├── public ├── robots.txt ├── favicon.ico ├── images │ ├── wxapp │ │ └── banners │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ ├── heycommunity │ │ └── logo.png │ └── users │ │ ├── default-cover.jpg │ │ ├── profile-wave.gif │ │ └── default-avatar.jpg ├── assets │ └── dashkit │ │ ├── img │ │ ├── figma.jpg │ │ ├── files │ │ │ ├── file-1.jpg │ │ │ ├── file-2.jpg │ │ │ ├── file-3.jpg │ │ │ └── file-4.jpg │ │ ├── posts │ │ │ └── post-1.jpg │ │ ├── covers │ │ │ ├── team-cover.jpg │ │ │ ├── header-cover.jpg │ │ │ ├── auth-side-cover.jpg │ │ │ ├── profile-cover-1.jpg │ │ │ ├── profile-cover-2.jpg │ │ │ ├── profile-cover-3.jpg │ │ │ ├── profile-cover-4.jpg │ │ │ ├── profile-cover-5.jpg │ │ │ ├── profile-cover-6.jpg │ │ │ ├── profile-cover-7.jpg │ │ │ └── sidebar-cover.jpg │ │ ├── kanban │ │ │ ├── kanban-1.jpg │ │ │ └── kanban-2.jpg │ │ ├── avatars │ │ │ ├── products │ │ │ │ ├── product-1.jpg │ │ │ │ ├── product-2.jpg │ │ │ │ ├── product-3.jpg │ │ │ │ └── product-4.jpg │ │ │ ├── profiles │ │ │ │ ├── avatar-1.jpg │ │ │ │ ├── avatar-2.jpg │ │ │ │ ├── avatar-3.jpg │ │ │ │ ├── avatar-4.jpg │ │ │ │ ├── avatar-5.jpg │ │ │ │ ├── avatar-6.jpg │ │ │ │ ├── avatar-7.jpg │ │ │ │ └── avatar-8.jpg │ │ │ ├── projects │ │ │ │ ├── project-1.jpg │ │ │ │ ├── project-2.jpg │ │ │ │ ├── project-3.jpg │ │ │ │ ├── project-4.jpg │ │ │ │ ├── project-5.jpg │ │ │ │ └── project-6.jpg │ │ │ └── teams │ │ │ │ ├── team-logo-1.jpg │ │ │ │ ├── team-logo-2.jpg │ │ │ │ ├── team-logo-3.jpg │ │ │ │ ├── team-logo-4.jpg │ │ │ │ ├── team-logo-5.jpg │ │ │ │ ├── team-logo-6.jpg │ │ │ │ ├── team-logo-7.jpg │ │ │ │ └── team-logo-8.jpg │ │ ├── masks │ │ │ ├── icon-status.svg │ │ │ ├── avatar-group.svg │ │ │ ├── avatar-status.svg │ │ │ ├── avatar-group-hover-last.svg │ │ │ └── avatar-group-hover.svg │ │ └── logo.svg │ │ ├── favicon │ │ └── favicon.ico │ │ └── fonts │ │ ├── feather │ │ ├── Feather144f.ttf │ │ └── Feather144f.woff │ │ └── cerebrisans │ │ ├── cerebrisans-medium.eot │ │ ├── cerebrisans-medium.ttf │ │ ├── cerebrisans-medium.woff │ │ ├── cerebrisans-regular.eot │ │ ├── cerebrisans-regular.ttf │ │ ├── cerebrisans-regular.woff │ │ ├── cerebrisans-semibold.eot │ │ ├── cerebrisans-semibold.ttf │ │ ├── cerebrisans-mediumd41d.eot │ │ ├── cerebrisans-regulard41d.eot │ │ ├── cerebrisans-semibold.woff │ │ └── cerebrisans-semiboldd41d.eot ├── vendor │ ├── telescope │ │ ├── favicon.ico │ │ └── mix-manifest.json │ ├── laravel-admin │ │ ├── AdminLTE │ │ │ ├── plugins │ │ │ │ ├── input-mask │ │ │ │ │ └── phone-codes │ │ │ │ │ │ └── readme.txt │ │ │ │ ├── iCheck │ │ │ │ │ ├── flat │ │ │ │ │ │ ├── red.png │ │ │ │ │ │ ├── aero.png │ │ │ │ │ │ ├── blue.png │ │ │ │ │ │ ├── flat.png │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ ├── grey.png │ │ │ │ │ │ ├── orange.png │ │ │ │ │ │ ├── pink.png │ │ │ │ │ │ ├── purple.png │ │ │ │ │ │ ├── red@2x.png │ │ │ │ │ │ ├── yellow.png │ │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ │ ├── flat@2x.png │ │ │ │ │ │ ├── green@2x.png │ │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ │ └── yellow@2x.png │ │ │ │ │ ├── line │ │ │ │ │ │ ├── line.png │ │ │ │ │ │ └── line@2x.png │ │ │ │ │ ├── minimal │ │ │ │ │ │ ├── red.png │ │ │ │ │ │ ├── aero.png │ │ │ │ │ │ ├── blue.png │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ ├── grey.png │ │ │ │ │ │ ├── pink.png │ │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ │ ├── green@2x.png │ │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ │ ├── minimal.png │ │ │ │ │ │ ├── orange.png │ │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ │ ├── purple.png │ │ │ │ │ │ ├── red@2x.png │ │ │ │ │ │ ├── yellow.png │ │ │ │ │ │ ├── minimal@2x.png │ │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ │ └── yellow@2x.png │ │ │ │ │ ├── square │ │ │ │ │ │ ├── aero.png │ │ │ │ │ │ ├── blue.png │ │ │ │ │ │ ├── grey.png │ │ │ │ │ │ ├── pink.png │ │ │ │ │ │ ├── red.png │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ ├── orange.png │ │ │ │ │ │ ├── purple.png │ │ │ │ │ │ ├── red@2x.png │ │ │ │ │ │ ├── square.png │ │ │ │ │ │ ├── yellow.png │ │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ │ ├── green@2x.png │ │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ │ ├── square@2x.png │ │ │ │ │ │ └── yellow@2x.png │ │ │ │ │ ├── polaris │ │ │ │ │ │ ├── polaris.png │ │ │ │ │ │ └── polaris@2x.png │ │ │ │ │ └── futurico │ │ │ │ │ │ ├── futurico.png │ │ │ │ │ │ └── futurico@2x.png │ │ │ │ ├── colorpicker │ │ │ │ │ └── img │ │ │ │ │ │ ├── hue.png │ │ │ │ │ │ ├── alpha.png │ │ │ │ │ │ ├── saturation.png │ │ │ │ │ │ ├── hue-horizontal.png │ │ │ │ │ │ └── alpha-horizontal.png │ │ │ │ ├── ionslider │ │ │ │ │ └── img │ │ │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ │ │ └── sprite-skin-nice.png │ │ │ │ └── select2 │ │ │ │ │ └── i18n │ │ │ │ │ ├── zh-TW.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ ├── uk.js │ │ │ │ │ └── ru.js │ │ │ ├── dist │ │ │ │ └── img │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── boxed-bg.jpg │ │ │ │ │ ├── boxed-bg.png │ │ │ │ │ ├── default-50x50.gif │ │ │ │ │ └── user2-160x160.jpg │ │ │ └── bootstrap │ │ │ │ └── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── bootstrap3-editable │ │ │ └── img │ │ │ │ ├── clear.png │ │ │ │ └── loading.gif │ │ ├── font-awesome │ │ │ └── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ ├── bootstrap-fileinput │ │ │ ├── img │ │ │ │ ├── loading.gif │ │ │ │ └── loading-sm.gif │ │ │ └── js │ │ │ │ └── plugins │ │ │ │ └── canvas-to-blob.min.js │ │ ├── google-fonts │ │ │ └── fonts │ │ │ │ ├── Source-Sans-Pro.eot │ │ │ │ ├── Source-Sans-Pro.ttf │ │ │ │ ├── Source-Sans-Pro.woff │ │ │ │ ├── Source-Sans-Pro.woff2 │ │ │ │ ├── Source-Sans-Pro-Bold.ttf │ │ │ │ ├── Source-Sans-Pro-Bold.woff │ │ │ │ ├── Source-Sans-Pro-Light.ttf │ │ │ │ ├── Source-Sans-Pro-Bold.woff2 │ │ │ │ ├── Source-Sans-Pro-Italic.ttf │ │ │ │ ├── Source-Sans-Pro-Italic.woff │ │ │ │ ├── Source-Sans-Pro-Light.woff │ │ │ │ ├── Source-Sans-Pro-Light.woff2 │ │ │ │ ├── Source-Sans-Pro-Italic.woff2 │ │ │ │ ├── Source-Sans-Pro-Semibold.ttf │ │ │ │ ├── Source-Sans-Pro-Semibold.woff │ │ │ │ ├── Source-Sans-Pro-Semibold.woff2 │ │ │ │ ├── Source-Sans-Pro-Light-Italic.ttf │ │ │ │ ├── Source-Sans-Pro-Light-Italic.woff │ │ │ │ ├── Source-Sans-Pro-Light-Italic.woff2 │ │ │ │ ├── Source-Sans-Pro-Semibold-Italic.ttf │ │ │ │ ├── Source-Sans-Pro-Semibold-Italic.woff │ │ │ │ └── Source-Sans-Pro-Semibold-Italic.woff2 │ │ └── flatpickr │ │ │ └── dist │ │ │ └── shortcut-buttons-flatpickr │ │ │ └── themes │ │ │ └── light.min.css │ ├── mckenziearts │ │ └── laravel-notify │ │ │ ├── images │ │ │ ├── drake-error.jpg │ │ │ ├── drake-success.jpg │ │ │ └── notifications.png │ │ │ └── mix-manifest.json │ └── laravel-admin-ext │ │ └── simditor │ │ └── simditor-2.3.28 │ │ └── styles │ │ └── customized.css └── .htaccess ├── modules_statuses.json ├── .gitattributes ├── README.md ├── app ├── Admin │ ├── Controllers │ │ ├── AuthController.php │ │ ├── SystemController.php │ │ └── HomeController.php │ ├── bootstrap.php │ └── routes.php ├── Http │ ├── Controllers │ │ ├── Web │ │ │ ├── HomeController.php │ │ │ ├── DebugController.php │ │ │ └── UserController.php │ │ ├── Controller.php │ │ ├── Api │ │ │ ├── FeedController.php │ │ │ ├── CarouselController.php │ │ │ └── UserReportController.php │ │ └── Dashboard │ │ │ ├── UserReportController.php │ │ │ ├── ThumbController.php │ │ │ └── PostController.php │ ├── Middleware │ │ ├── EncryptCookies.php │ │ ├── VerifyCsrfToken.php │ │ ├── TrustHosts.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── TrimStrings.php │ │ ├── Authenticate.php │ │ ├── TrustProxies.php │ │ ├── UserActiveRecord.php │ │ ├── DashboardAuthenticate.php │ │ ├── DashboardRedirectIfAuthenticated.php │ │ └── RedirectIfAuthenticated.php │ └── Resources │ │ ├── CommonResource.php │ │ ├── ThumbResource.php │ │ └── UserResource.php ├── Models │ ├── Setting.php │ ├── Feed.php │ ├── UserReport.php │ ├── Carousel.php │ └── Common │ │ └── EntityTrial.php ├── Providers │ ├── BroadcastServiceProvider.php │ ├── AuthServiceProvider.php │ ├── EventServiceProvider.php │ └── AppServiceProvider.php ├── Helpers │ └── heycommunity.php ├── Exceptions │ └── Handler.php ├── Console │ └── Kernel.php └── Events │ └── Notices │ └── Listeners │ └── writeNoticeTableHandler.php ├── .editorconfig ├── config ├── log-viewer.php ├── heycommunity.php ├── system.php ├── cors.php └── services.php ├── .gitignore ├── package.json ├── webpack.mix.js ├── routes ├── channels.php ├── console.php └── web.php ├── server.php └── .env.example /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/logs/wechat/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Activity/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Article/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Post/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Post/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Activity/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Article/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Article/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Post/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Post/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Post/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/logs/heycommunity/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Activity/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Activity/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Activity/Resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Activity/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Article/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Article/Resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Article/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Post/Resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Post/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/app/uploads/users/avatars/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Activity/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Article/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | *.sqlite-journal 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /Modules/Post/Config/config.php: -------------------------------------------------------------------------------- 1 | '动态' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Activity/Config/config.php: -------------------------------------------------------------------------------- 1 | '活动' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Article/Config/config.php: -------------------------------------------------------------------------------- 1 | '文章' 5 | ]; 6 | -------------------------------------------------------------------------------- /modules_statuses.json: -------------------------------------------------------------------------------- 1 | { 2 | "Post": true, 3 | "Article": true, 4 | "Activity": true 5 | } 6 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/wxapp/banners/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/images/wxapp/banners/1.png -------------------------------------------------------------------------------- /public/images/wxapp/banners/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/images/wxapp/banners/2.png -------------------------------------------------------------------------------- /public/images/wxapp/banners/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/images/wxapp/banners/3.png -------------------------------------------------------------------------------- /public/assets/dashkit/img/figma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/figma.jpg -------------------------------------------------------------------------------- /public/images/heycommunity/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/images/heycommunity/logo.png -------------------------------------------------------------------------------- /public/images/users/default-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/images/users/default-cover.jpg -------------------------------------------------------------------------------- /public/images/users/profile-wave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/images/users/profile-wave.gif -------------------------------------------------------------------------------- /public/vendor/telescope/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/vendor/telescope/favicon.ico -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | *.js linguist-vendored 5 | CHANGELOG.md export-ignore 6 | -------------------------------------------------------------------------------- /public/images/users/default-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/images/users/default-avatar.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/favicon/favicon.ico -------------------------------------------------------------------------------- /public/assets/dashkit/img/files/file-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/files/file-1.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/files/file-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/files/file-2.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/files/file-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/files/file-3.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/files/file-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/files/file-4.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/posts/post-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/posts/post-1.jpg -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/input-mask/phone-codes/readme.txt: -------------------------------------------------------------------------------- 1 | more phone masks can be found at https://github.com/andr-04/inputmask-multi -------------------------------------------------------------------------------- /public/assets/dashkit/img/covers/team-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/covers/team-cover.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/kanban/kanban-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/kanban/kanban-1.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/kanban/kanban-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/kanban/kanban-2.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/covers/header-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/covers/header-cover.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/fonts/feather/Feather144f.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/fonts/feather/Feather144f.ttf -------------------------------------------------------------------------------- /public/assets/dashkit/fonts/feather/Feather144f.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/fonts/feather/Feather144f.woff -------------------------------------------------------------------------------- /public/assets/dashkit/img/covers/auth-side-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/covers/auth-side-cover.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/covers/profile-cover-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/covers/profile-cover-1.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/covers/profile-cover-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/covers/profile-cover-2.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/covers/profile-cover-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/covers/profile-cover-3.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/covers/profile-cover-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/covers/profile-cover-4.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/covers/profile-cover-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/covers/profile-cover-5.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/covers/profile-cover-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/covers/profile-cover-6.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/covers/profile-cover-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/covers/profile-cover-7.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/covers/sidebar-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/covers/sidebar-cover.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/products/product-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/products/product-1.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/products/product-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/products/product-2.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/products/product-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/products/product-3.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/products/product-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/products/product-4.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/profiles/avatar-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/profiles/avatar-1.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/profiles/avatar-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/profiles/avatar-2.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/profiles/avatar-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/profiles/avatar-3.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/profiles/avatar-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/profiles/avatar-4.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/profiles/avatar-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/profiles/avatar-5.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/profiles/avatar-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/profiles/avatar-6.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/profiles/avatar-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/profiles/avatar-7.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/profiles/avatar-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/profiles/avatar-8.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/projects/project-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/projects/project-1.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/projects/project-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/projects/project-2.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/projects/project-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/projects/project-3.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/projects/project-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/projects/project-4.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/projects/project-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/projects/project-5.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/projects/project-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/projects/project-6.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/teams/team-logo-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/teams/team-logo-1.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/teams/team-logo-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/teams/team-logo-2.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/teams/team-logo-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/teams/team-logo-3.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/teams/team-logo-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/teams/team-logo-4.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/teams/team-logo-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/teams/team-logo-5.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/teams/team-logo-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/teams/team-logo-6.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/teams/team-logo-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/teams/team-logo-7.jpg -------------------------------------------------------------------------------- /public/assets/dashkit/img/avatars/teams/team-logo-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/assets/dashkit/img/avatars/teams/team-logo-8.jpg -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/dist/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/vendor/laravel-admin/AdminLTE/dist/img/icons.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/dist/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/vendor/laravel-admin/AdminLTE/dist/img/boxed-bg.jpg -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/dist/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/vendor/laravel-admin/AdminLTE/dist/img/boxed-bg.png -------------------------------------------------------------------------------- /Modules/Article/Entities/ArticleTagMap.php: -------------------------------------------------------------------------------- 1 | getMessage() ?: 'Forbidden')) 6 | -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/colorpicker/img/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/vendor/laravel-admin/AdminLTE/plugins/colorpicker/img/hue-horizontal.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/ionslider/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/vendor/laravel-admin/AdminLTE/plugins/ionslider/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/ionslider/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/vendor/laravel-admin/AdminLTE/plugins/ionslider/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/google-fonts/fonts/Source-Sans-Pro-Light-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/vendor/laravel-admin/google-fonts/fonts/Source-Sans-Pro-Light-Italic.ttf -------------------------------------------------------------------------------- /public/vendor/telescope/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/app.js": "/app.js?id=ff7aa0235e43ae0474e1", 3 | "/app-dark.css": "/app-dark.css?id=bc22d805b64b5a2ecaaa", 4 | "/app.css": "/app.css?id=d2d43f24f2a54d31e084" 5 | } 6 | -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/colorpicker/img/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/vendor/laravel-admin/AdminLTE/plugins/colorpicker/img/alpha-horizontal.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/google-fonts/fonts/Source-Sans-Pro-Light-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/vendor/laravel-admin/google-fonts/fonts/Source-Sans-Pro-Light-Italic.woff -------------------------------------------------------------------------------- /public/vendor/laravel-admin/google-fonts/fonts/Source-Sans-Pro-Light-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/vendor/laravel-admin/google-fonts/fonts/Source-Sans-Pro-Light-Italic.woff2 -------------------------------------------------------------------------------- /public/vendor/laravel-admin/google-fonts/fonts/Source-Sans-Pro-Semibold-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyCommunity/HeyCommunity-backend/HEAD/public/vendor/laravel-admin/google-fonts/fonts/Source-Sans-Pro-Semibold-Italic.ttf -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | isEmpty()) 2 |
{{ $article->intro }}
12 |