├── .bowerrc ├── .env.example ├── .gitattributes ├── .gitignore ├── _ide_helper.php ├── app ├── Console │ ├── Commands │ │ ├── ArticleLexicalAnalysis.php │ │ ├── CrawlArticle.php │ │ ├── CrawlBuildUrls.php │ │ ├── FixArticle.php │ │ ├── Test.php │ │ └── Ws.php │ └── Kernel.php ├── Crawl │ ├── Crawl.php │ ├── EasyCrawl.php │ ├── Exceptions │ │ ├── InvalidResponseException.php │ │ ├── InvalidUrlException.php │ │ ├── RequestFailException.php │ │ └── StoreFailException.php │ ├── SegmentfaultQuestionList.php │ └── SegmentfaultQuestionPage.php ├── Exceptions │ ├── Handler.php │ ├── UploadedFileException.php │ └── UploadedFileSaveFail.php ├── Facades │ └── LogicLog.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── AuthController.php │ │ │ ├── Controller.php │ │ │ ├── IndexController.php │ │ │ └── UserController.php │ │ ├── Api │ │ │ ├── ArticleController.php │ │ │ ├── AuthController.php │ │ │ ├── IndexController.php │ │ │ └── RegionController.php │ │ ├── ArticleController.php │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ └── ResetPasswordController.php │ │ ├── CategoryController.php │ │ ├── CommentController.php │ │ ├── Controller.php │ │ ├── HomeController.php │ │ ├── IndexController.php │ │ ├── ItemController.php │ │ ├── TestController.php │ │ └── UserController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── AdminAccessMiddleware.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── ArticleCreateRequest.php │ │ ├── ArticleUpdateRequest.php │ │ ├── CommentCreateRequest.php │ │ └── CommentUpdateRequest.php ├── Item.php ├── Listeners │ └── LogSuccessfulLogin.php ├── Models │ ├── Article.php │ ├── Category.php │ ├── Comment.php │ ├── Content.php │ ├── File.php │ ├── LoginHistory.php │ ├── Meta.php │ ├── Permission.php │ ├── Role.php │ ├── SearchHistory.php │ ├── Tag.php │ └── User.php ├── Notifications │ └── ResetPasswordNotification.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── LogServiceProvider.php │ └── RouteServiceProvider.php ├── Repositories │ ├── BaseRepository.php │ ├── Content │ │ ├── ArticleRepository.php │ │ ├── CategoryRepository.php │ │ ├── CommentRepository.php │ │ ├── SearchHistoryRepository.php │ │ └── TagRepository.php │ ├── Criteria │ │ ├── CategoryCriteria.php │ │ ├── RequestCriteria.php │ │ ├── SearchCriteria.php │ │ └── TagCriteria.php │ ├── CriteriaInterface.php │ ├── RepositoryCriteriaInterface.php │ ├── RepositoryException.php │ └── RepositoryInterface.php ├── Service │ ├── ArticleService.php │ ├── FileService.php │ ├── HttpService.php │ ├── SegmentfaultService.php │ └── UserService.php ├── WebSocket │ └── AirtcleController.php ├── Wenzi │ └── ArticleLexicalAnalysis.php └── helpers.php ├── artisan ├── bin ├── queue-listener-default.bat └── queue-listener-high.bat ├── bootstrap ├── app.php ├── autoload.php └── cache │ └── .gitignore ├── bower.json ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── captcha.php ├── database.php ├── entrust.php ├── filesystems.php ├── ide-helper.php ├── mail.php ├── purifier.php ├── queue.php ├── repository.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── ModelFactory.php ├── migrations │ ├── .gitkeep │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2016_03_08_160307_entrust_setup_tables.php │ ├── 2016_08_15_072716_create_files_table.php │ ├── 2016_09_24_061132_articles.php │ ├── 2016_09_24_114036_metas.php │ ├── 2016_09_24_115211_article_meta.php │ ├── 2016_09_29_152105_search_histories.php │ ├── 2016_10_13_072752_login_histories.php │ ├── 2017_03_24_094840_create_failed_jobs_table.php │ └── 2017_09_20_103055_create_items_table.php └── seeds │ ├── .gitkeep │ ├── DatabaseSeeder.php │ ├── PermissionsSeeder.php │ ├── TestUserSeeder.php │ └── UserSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── bootstrap │ ├── css │ │ └── bootstrap.css │ └── fonts │ │ └── bootstrap │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 ├── css │ └── app.css ├── favicon.ico ├── images │ ├── 1158269529265500905.jpg │ ├── index.jpg │ ├── no_avatars │ │ └── 1.png │ ├── no_category │ │ └── 1.png │ └── not-content.jpg ├── index.php ├── js │ └── app.js ├── robots.txt ├── test.php ├── uploads │ └── .gitignore └── web.config ├── readme.md ├── resources ├── assets │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ └── components │ │ │ └── Example.vue │ └── sass │ │ ├── _variables.scss │ │ ├── app.scss │ │ └── bootstrap.scss ├── lang │ ├── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── zh-CN │ │ ├── auth.php │ │ ├── common.php │ │ ├── model.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── admin │ ├── index.blade.php │ ├── layouts │ │ ├── app.blade.php │ │ └── login.blade.php │ ├── login.blade.php │ ├── nav.blade.php │ ├── pagination.blade.php │ └── user │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── layout.blade.php │ ├── article │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ └── register.blade.php │ ├── components │ ├── breadcrumb.blade.php │ ├── category.blade.php │ ├── search-form.blade.php │ └── tag.blade.php │ ├── errors │ ├── 404.blade.php │ └── 503.blade.php │ ├── fail.blade.php │ ├── hacker_alert.blade.php │ ├── home.blade.php │ ├── index.blade.php │ ├── layouts │ ├── app.blade.php │ ├── base.blade.php │ ├── content.blade.php │ └── foot.blade.php │ ├── region │ └── index.blade.php │ ├── success.blade.php │ ├── taobao │ ├── index.blade.php │ └── show.blade.php │ ├── test.blade.php │ └── vendor │ ├── .gitkeep │ ├── notifications │ ├── email-plain.blade.php │ └── email.blade.php │ └── pagination │ ├── bootstrap-4.blade.php │ ├── default.blade.php │ ├── pagination-advanced.blade.php │ ├── simple-bootstrap-4.blade.php │ └── simple-default.blade.php ├── routes ├── admin.php ├── api.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "public/bower_components" 3 | } -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/.gitignore -------------------------------------------------------------------------------- /_ide_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/_ide_helper.php -------------------------------------------------------------------------------- /app/Console/Commands/ArticleLexicalAnalysis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Console/Commands/ArticleLexicalAnalysis.php -------------------------------------------------------------------------------- /app/Console/Commands/CrawlArticle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Console/Commands/CrawlArticle.php -------------------------------------------------------------------------------- /app/Console/Commands/CrawlBuildUrls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Console/Commands/CrawlBuildUrls.php -------------------------------------------------------------------------------- /app/Console/Commands/FixArticle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Console/Commands/FixArticle.php -------------------------------------------------------------------------------- /app/Console/Commands/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Console/Commands/Test.php -------------------------------------------------------------------------------- /app/Console/Commands/Ws.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Console/Commands/Ws.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Crawl/Crawl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Crawl/Crawl.php -------------------------------------------------------------------------------- /app/Crawl/EasyCrawl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Crawl/EasyCrawl.php -------------------------------------------------------------------------------- /app/Crawl/Exceptions/InvalidResponseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Crawl/Exceptions/InvalidResponseException.php -------------------------------------------------------------------------------- /app/Crawl/Exceptions/InvalidUrlException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Crawl/Exceptions/InvalidUrlException.php -------------------------------------------------------------------------------- /app/Crawl/Exceptions/RequestFailException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Crawl/Exceptions/RequestFailException.php -------------------------------------------------------------------------------- /app/Crawl/Exceptions/StoreFailException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Crawl/Exceptions/StoreFailException.php -------------------------------------------------------------------------------- /app/Crawl/SegmentfaultQuestionList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Crawl/SegmentfaultQuestionList.php -------------------------------------------------------------------------------- /app/Crawl/SegmentfaultQuestionPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Crawl/SegmentfaultQuestionPage.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Exceptions/UploadedFileException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Exceptions/UploadedFileException.php -------------------------------------------------------------------------------- /app/Exceptions/UploadedFileSaveFail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Exceptions/UploadedFileSaveFail.php -------------------------------------------------------------------------------- /app/Facades/LogicLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Facades/LogicLog.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Controllers/Admin/AuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Controllers/Admin/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Controllers/Admin/IndexController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Controllers/Admin/UserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/ArticleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Controllers/Api/ArticleController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Controllers/Api/AuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Controllers/Api/IndexController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/RegionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Controllers/Api/RegionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ArticleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Controllers/ArticleController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Controllers/CategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/CommentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Controllers/CommentController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Controllers/IndexController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ItemController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Controllers/ItemController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Controllers/TestController.php -------------------------------------------------------------------------------- /app/Http/Controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Controllers/UserController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/AdminAccessMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Middleware/AdminAccessMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/ArticleCreateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Requests/ArticleCreateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ArticleUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Requests/ArticleUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/CommentCreateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Requests/CommentCreateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/CommentUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Http/Requests/CommentUpdateRequest.php -------------------------------------------------------------------------------- /app/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Item.php -------------------------------------------------------------------------------- /app/Listeners/LogSuccessfulLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Listeners/LogSuccessfulLogin.php -------------------------------------------------------------------------------- /app/Models/Article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Models/Article.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Models/Comment.php -------------------------------------------------------------------------------- /app/Models/Content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Models/Content.php -------------------------------------------------------------------------------- /app/Models/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Models/File.php -------------------------------------------------------------------------------- /app/Models/LoginHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Models/LoginHistory.php -------------------------------------------------------------------------------- /app/Models/Meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Models/Meta.php -------------------------------------------------------------------------------- /app/Models/Permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Models/Permission.php -------------------------------------------------------------------------------- /app/Models/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Models/Role.php -------------------------------------------------------------------------------- /app/Models/SearchHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Models/SearchHistory.php -------------------------------------------------------------------------------- /app/Models/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Models/Tag.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Notifications/ResetPasswordNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Notifications/ResetPasswordNotification.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/LogServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Providers/LogServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Repositories/BaseRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Repositories/BaseRepository.php -------------------------------------------------------------------------------- /app/Repositories/Content/ArticleRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Repositories/Content/ArticleRepository.php -------------------------------------------------------------------------------- /app/Repositories/Content/CategoryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Repositories/Content/CategoryRepository.php -------------------------------------------------------------------------------- /app/Repositories/Content/CommentRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Repositories/Content/CommentRepository.php -------------------------------------------------------------------------------- /app/Repositories/Content/SearchHistoryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Repositories/Content/SearchHistoryRepository.php -------------------------------------------------------------------------------- /app/Repositories/Content/TagRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Repositories/Content/TagRepository.php -------------------------------------------------------------------------------- /app/Repositories/Criteria/CategoryCriteria.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Repositories/Criteria/CategoryCriteria.php -------------------------------------------------------------------------------- /app/Repositories/Criteria/RequestCriteria.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Repositories/Criteria/RequestCriteria.php -------------------------------------------------------------------------------- /app/Repositories/Criteria/SearchCriteria.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Repositories/Criteria/SearchCriteria.php -------------------------------------------------------------------------------- /app/Repositories/Criteria/TagCriteria.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Repositories/Criteria/TagCriteria.php -------------------------------------------------------------------------------- /app/Repositories/CriteriaInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Repositories/CriteriaInterface.php -------------------------------------------------------------------------------- /app/Repositories/RepositoryCriteriaInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Repositories/RepositoryCriteriaInterface.php -------------------------------------------------------------------------------- /app/Repositories/RepositoryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Repositories/RepositoryException.php -------------------------------------------------------------------------------- /app/Repositories/RepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Repositories/RepositoryInterface.php -------------------------------------------------------------------------------- /app/Service/ArticleService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Service/ArticleService.php -------------------------------------------------------------------------------- /app/Service/FileService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Service/FileService.php -------------------------------------------------------------------------------- /app/Service/HttpService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Service/HttpService.php -------------------------------------------------------------------------------- /app/Service/SegmentfaultService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Service/SegmentfaultService.php -------------------------------------------------------------------------------- /app/Service/UserService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Service/UserService.php -------------------------------------------------------------------------------- /app/WebSocket/AirtcleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/WebSocket/AirtcleController.php -------------------------------------------------------------------------------- /app/Wenzi/ArticleLexicalAnalysis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/Wenzi/ArticleLexicalAnalysis.php -------------------------------------------------------------------------------- /app/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/app/helpers.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/artisan -------------------------------------------------------------------------------- /bin/queue-listener-default.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/bin/queue-listener-default.bat -------------------------------------------------------------------------------- /bin/queue-listener-high.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/bin/queue-listener-high.bat -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/bootstrap/autoload.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/bower.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/config/captcha.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/config/database.php -------------------------------------------------------------------------------- /config/entrust.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/config/entrust.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/ide-helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/config/ide-helper.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/purifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/config/purifier.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/config/repository.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2016_03_08_160307_entrust_setup_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/database/migrations/2016_03_08_160307_entrust_setup_tables.php -------------------------------------------------------------------------------- /database/migrations/2016_08_15_072716_create_files_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/database/migrations/2016_08_15_072716_create_files_table.php -------------------------------------------------------------------------------- /database/migrations/2016_09_24_061132_articles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/database/migrations/2016_09_24_061132_articles.php -------------------------------------------------------------------------------- /database/migrations/2016_09_24_114036_metas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/database/migrations/2016_09_24_114036_metas.php -------------------------------------------------------------------------------- /database/migrations/2016_09_24_115211_article_meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/database/migrations/2016_09_24_115211_article_meta.php -------------------------------------------------------------------------------- /database/migrations/2016_09_29_152105_search_histories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/database/migrations/2016_09_29_152105_search_histories.php -------------------------------------------------------------------------------- /database/migrations/2016_10_13_072752_login_histories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/database/migrations/2016_10_13_072752_login_histories.php -------------------------------------------------------------------------------- /database/migrations/2017_03_24_094840_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/database/migrations/2017_03_24_094840_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2017_09_20_103055_create_items_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/database/migrations/2017_09_20_103055_create_items_table.php -------------------------------------------------------------------------------- /database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeds/PermissionsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/database/seeds/PermissionsSeeder.php -------------------------------------------------------------------------------- /database/seeds/TestUserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/database/seeds/TestUserSeeder.php -------------------------------------------------------------------------------- /database/seeds/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/database/seeds/UserSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/public/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /public/bootstrap/fonts/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/public/bootstrap/fonts/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/bootstrap/fonts/bootstrap/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/public/bootstrap/fonts/bootstrap/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/bootstrap/fonts/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/public/bootstrap/fonts/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/bootstrap/fonts/bootstrap/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/public/bootstrap/fonts/bootstrap/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/bootstrap/fonts/bootstrap/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/public/bootstrap/fonts/bootstrap/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/1158269529265500905.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/public/images/1158269529265500905.jpg -------------------------------------------------------------------------------- /public/images/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/public/images/index.jpg -------------------------------------------------------------------------------- /public/images/no_avatars/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/public/images/no_avatars/1.png -------------------------------------------------------------------------------- /public/images/no_category/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/public/images/no_category/1.png -------------------------------------------------------------------------------- /public/images/not-content.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/public/images/not-content.jpg -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by shellus on 2017/1/2. 3 | */ 4 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/public/test.php -------------------------------------------------------------------------------- /public/uploads/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/public/web.config -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/readme.md -------------------------------------------------------------------------------- /resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/assets/js/app.js -------------------------------------------------------------------------------- /resources/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/assets/js/bootstrap.js -------------------------------------------------------------------------------- /resources/assets/js/components/Example.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/assets/js/components/Example.vue -------------------------------------------------------------------------------- /resources/assets/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/assets/sass/_variables.scss -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /resources/assets/sass/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/assets/sass/bootstrap.scss -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/lang/zh-CN/auth.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/lang/zh-CN/common.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/lang/zh-CN/model.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/lang/zh-CN/pagination.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/lang/zh-CN/passwords.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/lang/zh-CN/validation.php -------------------------------------------------------------------------------- /resources/views/admin/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/admin/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/admin/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/admin/layouts/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/admin/layouts/login.blade.php -------------------------------------------------------------------------------- /resources/views/admin/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/admin/login.blade.php -------------------------------------------------------------------------------- /resources/views/admin/nav.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/admin/nav.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pagination.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/admin/pagination.blade.php -------------------------------------------------------------------------------- /resources/views/admin/user/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/admin/user/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/user/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/admin/user/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/user/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/admin/user/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/user/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/admin/user/layout.blade.php -------------------------------------------------------------------------------- /resources/views/article/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/article/edit.blade.php -------------------------------------------------------------------------------- /resources/views/article/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/article/index.blade.php -------------------------------------------------------------------------------- /resources/views/article/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/article/show.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/components/breadcrumb.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/components/breadcrumb.blade.php -------------------------------------------------------------------------------- /resources/views/components/category.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/components/category.blade.php -------------------------------------------------------------------------------- /resources/views/components/search-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/components/search-form.blade.php -------------------------------------------------------------------------------- /resources/views/components/tag.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/components/tag.blade.php -------------------------------------------------------------------------------- /resources/views/errors/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/errors/404.blade.php -------------------------------------------------------------------------------- /resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/errors/503.blade.php -------------------------------------------------------------------------------- /resources/views/fail.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/fail.blade.php -------------------------------------------------------------------------------- /resources/views/hacker_alert.blade.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/index.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/base.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/layouts/base.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/content.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/layouts/content.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/foot.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/layouts/foot.blade.php -------------------------------------------------------------------------------- /resources/views/region/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/region/index.blade.php -------------------------------------------------------------------------------- /resources/views/success.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/success.blade.php -------------------------------------------------------------------------------- /resources/views/taobao/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/taobao/index.blade.php -------------------------------------------------------------------------------- /resources/views/taobao/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/taobao/show.blade.php -------------------------------------------------------------------------------- /resources/views/test.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/test.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/views/vendor/notifications/email-plain.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/vendor/notifications/email-plain.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/notifications/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/vendor/notifications/email.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/bootstrap-4.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/vendor/pagination/bootstrap-4.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/vendor/pagination/default.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/pagination-advanced.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/vendor/pagination/pagination-advanced.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-bootstrap-4.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/vendor/pagination/simple-bootstrap-4.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/resources/views/vendor/pagination/simple-default.blade.php -------------------------------------------------------------------------------- /routes/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/routes/admin.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellus/shcms/HEAD/webpack.mix.js --------------------------------------------------------------------------------