├── .gitattributes ├── .gitignore ├── .htaccess ├── .idea ├── blade.xml ├── copyright │ └── profiles_settings.xml ├── modules.xml ├── monolog-web.iml ├── vcs.xml └── workspace.xml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── commands │ └── .gitkeep ├── config │ ├── app.php │ ├── auth.php │ ├── cache.php │ ├── compile.php │ ├── database.php │ ├── install.lock │ ├── mail.php │ ├── packages │ │ └── .gitkeep │ ├── queue.php │ ├── remote.php │ ├── services.php │ ├── session.php │ ├── view.php │ └── workbench.php ├── controllers │ ├── .gitkeep │ ├── Api │ │ ├── ApiAuthController.php │ │ ├── ApiContactsController.php │ │ ├── ApiReportsController.php │ │ └── ApiStatuesController.php │ ├── AuthController.php │ ├── BaseController.php │ ├── HomeController.php │ ├── ReportsController.php │ ├── SettingsController.php │ ├── ShareController.php │ ├── StatuesController.php │ └── UsersController.php ├── database │ ├── .gitignore │ ├── migrations │ │ ├── 2015_01_21_062230_create_followers_table.php │ │ ├── 2015_01_22_131516_create_users_table.php │ │ ├── 2015_03_21_012345_create_guesses_table.php │ │ ├── 2015_10_14_154462_create_Opens_table.php │ │ ├── 2015_9_29_013545_create_settings_table.php │ │ ├── 2015_9_8_072110_create_albums_table.php │ │ ├── 2015_9_8_151810_create_reports_table.php │ │ ├── 2015_9_8_151810_create_statues_table.php │ │ ├── 2015_9_8_154462_create_profiles_table.php │ │ └── folder │ │ │ └── 2015_01_28_012859_entrust_setup_tables.php │ └── seeds │ │ ├── .gitkeep │ │ ├── DatabaseSeeder.php │ │ ├── FollowerTableSeeder.php │ │ ├── GuessTableSeeder.php │ │ ├── ProfileTableSeeder.php │ │ ├── ReportTableSeeder.php │ │ ├── StatueTableSeeder.php │ │ └── UserTableSeeder.php ├── filters.php ├── huijimuhe │ ├── Auth │ │ ├── Guard.php │ │ ├── UserCache.php │ │ └── UserProvider.php │ ├── Config │ │ └── Validators.php │ ├── Core │ │ ├── Exceptions │ │ │ ├── EntityNotFoundException.php │ │ │ ├── NoValidationRulesFoundException.php │ │ │ ├── NoValidatorInstantiatedException.php │ │ │ ├── NotAuthorizedException.php │ │ │ └── UserExistException.php │ │ ├── Listeners │ │ │ ├── AuthListener.php │ │ │ ├── CreatorListener.php │ │ │ ├── DeleterListener.php │ │ │ └── UpdaterListener.php │ │ └── Repo │ │ │ ├── EloquentRepository.php │ │ │ └── Entity.php │ ├── Presenters │ │ ├── StatuePresenter.php │ │ └── UserPresenter.php │ ├── Qiniu │ │ ├── Auth.php │ │ ├── Config.php │ │ ├── Etag.php │ │ ├── Functions.php │ │ ├── Http │ │ │ ├── Client.php │ │ │ ├── Error.php │ │ │ ├── Request.php │ │ │ └── Response.php │ │ ├── Processing │ │ │ ├── Operation.php │ │ │ └── PersistentFop.php │ │ ├── Storage │ │ │ ├── BucketManager.php │ │ │ ├── FormUploader.php │ │ │ ├── ResumeUploader.php │ │ │ └── UploadManager.php │ │ └── Utils.php │ ├── Repo │ │ ├── BaiduLbsRepository.php │ │ ├── ReportRepository.php │ │ ├── SettingRepository.php │ │ ├── StatueRepository.php │ │ ├── UserRepository.php │ │ └── api │ │ │ ├── ReportRepository.php │ │ │ ├── StatueRepository.php │ │ │ └── UserRepository.php │ └── Support │ │ ├── Easemob.class.php.php │ │ └── snoopy.class.php ├── lang │ ├── ch │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ └── en │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php ├── models │ ├── Account.php │ ├── Contact.php │ ├── Guess.php │ ├── Open.php │ ├── Profile.php │ ├── Report.php │ ├── Setting.php │ ├── Statue.php │ ├── StatueJSON.php │ └── User.php ├── routes.php ├── start │ ├── artisan.php │ ├── global.php │ └── local.php ├── storage │ ├── .gitignore │ ├── cache │ │ ├── 20 │ │ │ └── d1 │ │ │ │ └── 20d135f0f28185b84a4cf7aa51f29500 │ │ ├── 49 │ │ │ └── 47 │ │ │ │ └── 4947520eaea9ca74442186e600cc027c │ │ ├── 57 │ │ │ └── 1b │ │ │ │ └── 571b145bb3897e31dfb4118179a29538 │ │ ├── b5 │ │ │ └── 9c │ │ │ │ └── b59c67bf196a4758191e42f76670ceba │ │ ├── ea │ │ │ └── 91 │ │ │ │ └── ea91f9c6f60865437268b85375a64313 │ │ └── fc │ │ │ └── db │ │ │ └── fcdb757b23e58a22748d1694f929f469 │ ├── logs │ │ └── .gitignore │ ├── meta │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ ├── 1f06984938d91f0937a5dad9d7721a70 │ │ ├── 3d631c334d383210c4a6718b2066c0e4 │ │ ├── 6f93fd0de3a88ee3d8bf5c8ca8363536 │ │ ├── 7864be1bdb5fc560064dfef8b7f9d9d1 │ │ ├── a41827808fa7606bad7cd33925604090 │ │ ├── aa3b804da803f459992f780a90fcdb40 │ │ ├── c083841a0989b130adb30b9dbd6c37ad │ │ ├── ca88643495220dfd81842361b19e4e3f │ │ ├── ceb02263780fbc29bc4130189f29f2e9 │ │ ├── f87553a0c34d9cb2b3d1a87574aa0371 │ │ └── f8f84d0c22d5d827ab7b3630123d7dd1 ├── tests │ ├── ExampleTest.php │ └── TestCase.php └── views │ ├── auth │ ├── login.blade.php │ ├── pers.blade.php │ └── userbanned.blade.php │ ├── dashboard.blade.php │ ├── emails │ └── auth │ │ └── reminder.blade.php │ ├── entrust │ ├── partials │ │ └── sidebar.blade.php │ ├── role.blade.php │ └── show.blade.php │ ├── layout │ └── default.blade.php │ ├── portal.blade.php │ ├── reports │ ├── index.blade.php │ └── show.blade.php │ ├── settings │ ├── create_edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── share │ └── index.blade.php │ ├── statues │ ├── create_edit.blade.php │ ├── hotmap.blade.php │ ├── index.blade.php │ ├── robot.blade.php │ └── show.blade.php │ └── users │ ├── create_edit.blade.php │ ├── index.blade.php │ └── show.blade.php ├── artisan ├── bootstrap ├── autoload.php ├── paths.php └── start.php ├── composer.json ├── favicon.ico ├── index.php ├── phpunit.xml ├── public ├── .htaccess ├── bootstrap │ ├── css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js ├── css │ ├── AdminLTE.css │ ├── AdminLTE.min.css │ └── skins │ │ ├── _all-skins.css │ │ ├── _all-skins.min.css │ │ ├── skin-black-light.css │ │ ├── skin-black-light.min.css │ │ ├── skin-black.css │ │ ├── skin-black.min.css │ │ ├── skin-blue-light.css │ │ ├── skin-blue-light.min.css │ │ ├── skin-blue.css │ │ ├── skin-blue.min.css │ │ ├── skin-green-light.css │ │ ├── skin-green-light.min.css │ │ ├── skin-green.css │ │ ├── skin-green.min.css │ │ ├── skin-purple-light.css │ │ ├── skin-purple-light.min.css │ │ ├── skin-purple.css │ │ ├── skin-purple.min.css │ │ ├── skin-red-light.css │ │ ├── skin-red-light.min.css │ │ ├── skin-red.css │ │ ├── skin-red.min.css │ │ ├── skin-yellow-light.css │ │ ├── skin-yellow-light.min.css │ │ ├── skin-yellow.css │ │ └── skin-yellow.min.css ├── favicon.ico ├── img │ ├── bg1.jpg │ ├── bg2.jpg │ ├── box.png │ ├── icons.png │ ├── logo.png │ └── phone1.png ├── index.php ├── js │ ├── app.js │ ├── app.min.js │ ├── dashboard.js │ └── jquery.form.js └── plugins │ ├── bootstrap-slider │ ├── bootstrap-slider.js │ └── slider.css │ ├── bootstrap-wysihtml5 │ ├── bootstrap3-wysihtml5.all.js │ ├── bootstrap3-wysihtml5.all.min.js │ ├── bootstrap3-wysihtml5.css │ └── bootstrap3-wysihtml5.min.css │ ├── chartjs │ ├── Chart.js │ └── Chart.min.js │ ├── ckeditor │ ├── CHANGES.md │ ├── LICENSE.md │ ├── README.md │ ├── adapters │ │ └── jquery.js │ ├── build-config.js │ ├── ckeditor.js │ ├── config.js │ ├── contents.css │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugins │ │ ├── a11yhelp │ │ │ └── dialogs │ │ │ │ ├── a11yhelp.js │ │ │ │ └── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── about.js │ │ │ │ ├── hidpi │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── logo_ckeditor.png │ │ ├── clipboard │ │ │ └── dialogs │ │ │ │ └── paste.js │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ ├── fakeobjects │ │ │ └── images │ │ │ │ └── spacer.gif │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── image │ │ │ ├── dialogs │ │ │ │ └── image.js │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── link │ │ │ ├── dialogs │ │ │ │ ├── anchor.js │ │ │ │ └── link.js │ │ │ └── images │ │ │ │ ├── anchor.png │ │ │ │ └── hidpi │ │ │ │ └── anchor.png │ │ ├── magicline │ │ │ └── images │ │ │ │ ├── hidpi │ │ │ │ └── icon.png │ │ │ │ └── icon.png │ │ ├── pastefromword │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── scayt │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ │ ├── options.js │ │ │ │ └── toolbar.css │ │ ├── specialchar │ │ │ └── dialogs │ │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ku.js │ │ │ │ ├── lv.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ │ └── specialchar.js │ │ ├── table │ │ │ └── dialogs │ │ │ │ └── table.js │ │ ├── tabletools │ │ │ └── dialogs │ │ │ │ └── tableCell.js │ │ └── wsc │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ ├── ciframe.html │ │ │ ├── tmp.html │ │ │ ├── tmpFrameset.html │ │ │ ├── wsc.css │ │ │ ├── wsc.js │ │ │ └── wsc_ie.js │ ├── skins │ │ └── moono │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie7.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── dialog_opera.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie7.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ ├── lock-open.png │ │ │ ├── lock.png │ │ │ └── refresh.png │ │ │ └── readme.md │ └── styles.js │ ├── colorpicker │ ├── bootstrap-colorpicker.css │ ├── bootstrap-colorpicker.js │ ├── bootstrap-colorpicker.min.css │ ├── bootstrap-colorpicker.min.js │ └── img │ │ ├── alpha-horizontal.png │ │ ├── alpha.png │ │ ├── hue-horizontal.png │ │ ├── hue.png │ │ └── saturation.png │ ├── datatables │ ├── dataTables.bootstrap.css │ ├── dataTables.bootstrap.js │ ├── dataTables.bootstrap.min.js │ ├── extensions │ │ ├── AutoFill │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.autoFill.css │ │ │ │ └── dataTables.autoFill.min.css │ │ │ ├── examples │ │ │ │ ├── columns.html │ │ │ │ ├── complete-callback.html │ │ │ │ ├── fill-both.html │ │ │ │ ├── fill-horizontal.html │ │ │ │ ├── index.html │ │ │ │ ├── scrolling.html │ │ │ │ ├── simple.html │ │ │ │ └── step-callback.html │ │ │ ├── images │ │ │ │ └── filler.png │ │ │ └── js │ │ │ │ ├── dataTables.autoFill.js │ │ │ │ └── dataTables.autoFill.min.js │ │ ├── ColReorder │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.colReorder.css │ │ │ │ └── dataTables.colReorder.min.css │ │ │ ├── examples │ │ │ │ ├── alt_insert.html │ │ │ │ ├── col_filter.html │ │ │ │ ├── colvis.html │ │ │ │ ├── fixedcolumns.html │ │ │ │ ├── fixedheader.html │ │ │ │ ├── index.html │ │ │ │ ├── jqueryui.html │ │ │ │ ├── new_init.html │ │ │ │ ├── predefined.html │ │ │ │ ├── realtime.html │ │ │ │ ├── reset.html │ │ │ │ ├── scrolling.html │ │ │ │ ├── server_side.html │ │ │ │ ├── simple.html │ │ │ │ └── state_save.html │ │ │ ├── images │ │ │ │ └── insert.png │ │ │ └── js │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ └── dataTables.colReorder.min.js │ │ ├── ColVis │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.colVis.css │ │ │ │ ├── dataTables.colVis.min.css │ │ │ │ └── dataTables.colvis.jqueryui.css │ │ │ ├── examples │ │ │ │ ├── button_order.html │ │ │ │ ├── exclude_columns.html │ │ │ │ ├── group_columns.html │ │ │ │ ├── index.html │ │ │ │ ├── jqueryui.html │ │ │ │ ├── mouseover.html │ │ │ │ ├── new_init.html │ │ │ │ ├── restore.html │ │ │ │ ├── simple.html │ │ │ │ ├── text.html │ │ │ │ ├── title_callback.html │ │ │ │ ├── two_tables.html │ │ │ │ └── two_tables_identical.html │ │ │ └── js │ │ │ │ ├── dataTables.colVis.js │ │ │ │ └── dataTables.colVis.min.js │ │ ├── FixedColumns │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.fixedColumns.css │ │ │ │ └── dataTables.fixedColumns.min.css │ │ │ ├── examples │ │ │ │ ├── bootstrap.html │ │ │ │ ├── col_filter.html │ │ │ │ ├── colvis.html │ │ │ │ ├── css_size.html │ │ │ │ ├── index.html │ │ │ │ ├── index_column.html │ │ │ │ ├── left_right_columns.html │ │ │ │ ├── right_column.html │ │ │ │ ├── rowspan.html │ │ │ │ ├── server-side-processing.html │ │ │ │ ├── simple.html │ │ │ │ ├── size_fixed.html │ │ │ │ ├── size_fluid.html │ │ │ │ └── two_columns.html │ │ │ └── js │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ └── dataTables.fixedColumns.min.js │ │ ├── FixedHeader │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.fixedHeader.css │ │ │ │ └── dataTables.fixedHeader.min.css │ │ │ ├── examples │ │ │ │ ├── header_footer.html │ │ │ │ ├── index.html │ │ │ │ ├── simple.html │ │ │ │ ├── top_left_right.html │ │ │ │ ├── two_tables.html │ │ │ │ └── zIndexes.html │ │ │ └── js │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ └── dataTables.fixedHeader.min.js │ │ ├── KeyTable │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.keyTable.css │ │ │ │ └── dataTables.keyTable.min.css │ │ │ ├── examples │ │ │ │ ├── events.html │ │ │ │ ├── html.html │ │ │ │ ├── index.html │ │ │ │ ├── scrolling.html │ │ │ │ └── simple.html │ │ │ └── js │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ └── dataTables.keyTable.min.js │ │ ├── Responsive │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.responsive.css │ │ │ │ └── dataTables.responsive.scss │ │ │ ├── examples │ │ │ │ ├── child-rows │ │ │ │ │ ├── column-control.html │ │ │ │ │ ├── custom-renderer.html │ │ │ │ │ ├── disable-child-rows.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── right-column.html │ │ │ │ │ └── whole-row-control.html │ │ │ │ ├── display-control │ │ │ │ │ ├── auto.html │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── complexHeader.html │ │ │ │ │ ├── fixedHeader.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── init-classes.html │ │ │ │ ├── index.html │ │ │ │ ├── initialisation │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── className.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── new.html │ │ │ │ │ └── option.html │ │ │ │ └── styling │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── compact.html │ │ │ │ │ ├── foundation.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── scrolling.html │ │ │ └── js │ │ │ │ ├── dataTables.responsive.js │ │ │ │ └── dataTables.responsive.min.js │ │ ├── Scroller │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.scroller.css │ │ │ │ └── dataTables.scroller.min.css │ │ │ ├── examples │ │ │ │ ├── api_scrolling.html │ │ │ │ ├── data │ │ │ │ │ ├── 2500.txt │ │ │ │ │ └── ssp.php │ │ │ │ ├── index.html │ │ │ │ ├── large_js_source.html │ │ │ │ ├── server-side_processing.html │ │ │ │ ├── simple.html │ │ │ │ └── state_saving.html │ │ │ ├── images │ │ │ │ └── loading-background.png │ │ │ └── js │ │ │ │ ├── dataTables.scroller.js │ │ │ │ └── dataTables.scroller.min.js │ │ └── TableTools │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ ├── dataTables.tableTools.css │ │ │ └── dataTables.tableTools.min.css │ │ │ ├── examples │ │ │ ├── ajax.html │ │ │ ├── alter_buttons.html │ │ │ ├── bootstrap.html │ │ │ ├── button_text.html │ │ │ ├── collection.html │ │ │ ├── defaults.html │ │ │ ├── index.html │ │ │ ├── jqueryui.html │ │ │ ├── multi_instance.html │ │ │ ├── multiple_tables.html │ │ │ ├── new_init.html │ │ │ ├── pdf_message.html │ │ │ ├── plug-in.html │ │ │ ├── select_column.html │ │ │ ├── select_multi.html │ │ │ ├── select_os.html │ │ │ ├── select_single.html │ │ │ ├── simple.html │ │ │ └── swf_path.html │ │ │ ├── images │ │ │ ├── collection.png │ │ │ ├── collection_hover.png │ │ │ ├── copy.png │ │ │ ├── copy_hover.png │ │ │ ├── csv.png │ │ │ ├── csv_hover.png │ │ │ ├── pdf.png │ │ │ ├── pdf_hover.png │ │ │ ├── print.png │ │ │ ├── print_hover.png │ │ │ ├── psd │ │ │ │ ├── collection.psd │ │ │ │ ├── copy document.psd │ │ │ │ ├── file_types.psd │ │ │ │ └── printer.psd │ │ │ ├── xls.png │ │ │ └── xls_hover.png │ │ │ ├── js │ │ │ ├── dataTables.tableTools.js │ │ │ └── dataTables.tableTools.min.js │ │ │ └── swf │ │ │ ├── copy_csv_xls.swf │ │ │ └── copy_csv_xls_pdf.swf │ ├── images │ │ ├── sort_asc.png │ │ ├── sort_asc_disabled.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ └── sort_desc_disabled.png │ ├── jquery.dataTables.css │ ├── jquery.dataTables.js │ ├── jquery.dataTables.min.css │ ├── jquery.dataTables.min.js │ └── jquery.dataTables_themeroller.css │ ├── datepicker │ ├── bootstrap-datepicker.js │ ├── datepicker3.css │ └── locales │ │ ├── bootstrap-datepicker.ar.js │ │ ├── bootstrap-datepicker.az.js │ │ ├── bootstrap-datepicker.bg.js │ │ ├── bootstrap-datepicker.ca.js │ │ ├── bootstrap-datepicker.cs.js │ │ ├── bootstrap-datepicker.cy.js │ │ ├── bootstrap-datepicker.da.js │ │ ├── bootstrap-datepicker.de.js │ │ ├── bootstrap-datepicker.el.js │ │ ├── bootstrap-datepicker.es.js │ │ ├── bootstrap-datepicker.et.js │ │ ├── bootstrap-datepicker.fa.js │ │ ├── bootstrap-datepicker.fi.js │ │ ├── bootstrap-datepicker.fr.js │ │ ├── bootstrap-datepicker.gl.js │ │ ├── bootstrap-datepicker.he.js │ │ ├── bootstrap-datepicker.hr.js │ │ ├── bootstrap-datepicker.hu.js │ │ ├── bootstrap-datepicker.id.js │ │ ├── bootstrap-datepicker.is.js │ │ ├── bootstrap-datepicker.it.js │ │ ├── bootstrap-datepicker.ja.js │ │ ├── bootstrap-datepicker.ka.js │ │ ├── bootstrap-datepicker.kk.js │ │ ├── bootstrap-datepicker.kr.js │ │ ├── bootstrap-datepicker.lt.js │ │ ├── bootstrap-datepicker.lv.js │ │ ├── bootstrap-datepicker.mk.js │ │ ├── bootstrap-datepicker.ms.js │ │ ├── bootstrap-datepicker.nb.js │ │ ├── bootstrap-datepicker.nl-BE.js │ │ ├── bootstrap-datepicker.nl.js │ │ ├── bootstrap-datepicker.no.js │ │ ├── bootstrap-datepicker.pl.js │ │ ├── bootstrap-datepicker.pt-BR.js │ │ ├── bootstrap-datepicker.pt.js │ │ ├── bootstrap-datepicker.ro.js │ │ ├── bootstrap-datepicker.rs-latin.js │ │ ├── bootstrap-datepicker.rs.js │ │ ├── bootstrap-datepicker.ru.js │ │ ├── bootstrap-datepicker.sk.js │ │ ├── bootstrap-datepicker.sl.js │ │ ├── bootstrap-datepicker.sq.js │ │ ├── bootstrap-datepicker.sv.js │ │ ├── bootstrap-datepicker.sw.js │ │ ├── bootstrap-datepicker.th.js │ │ ├── bootstrap-datepicker.tr.js │ │ ├── bootstrap-datepicker.ua.js │ │ ├── bootstrap-datepicker.vi.js │ │ ├── bootstrap-datepicker.zh-CN.js │ │ └── bootstrap-datepicker.zh-TW.js │ ├── daterangepicker │ ├── daterangepicker-bs3.css │ ├── daterangepicker.js │ ├── moment.js │ └── moment.min.js │ ├── fastclick │ ├── fastclick.js │ └── fastclick.min.js │ ├── flot │ ├── excanvas.js │ ├── excanvas.min.js │ ├── jquery.colorhelpers.js │ ├── jquery.colorhelpers.min.js │ ├── jquery.flot.canvas.js │ ├── jquery.flot.canvas.min.js │ ├── jquery.flot.categories.js │ ├── jquery.flot.categories.min.js │ ├── jquery.flot.crosshair.js │ ├── jquery.flot.crosshair.min.js │ ├── jquery.flot.errorbars.js │ ├── jquery.flot.errorbars.min.js │ ├── jquery.flot.fillbetween.js │ ├── jquery.flot.fillbetween.min.js │ ├── jquery.flot.image.js │ ├── jquery.flot.image.min.js │ ├── jquery.flot.js │ ├── jquery.flot.min.js │ ├── jquery.flot.navigate.js │ ├── jquery.flot.navigate.min.js │ ├── jquery.flot.pie.js │ ├── jquery.flot.pie.min.js │ ├── jquery.flot.resize.js │ ├── jquery.flot.resize.min.js │ ├── jquery.flot.selection.js │ ├── jquery.flot.selection.min.js │ ├── jquery.flot.stack.js │ ├── jquery.flot.stack.min.js │ ├── jquery.flot.symbol.js │ ├── jquery.flot.symbol.min.js │ ├── jquery.flot.threshold.js │ ├── jquery.flot.threshold.min.js │ ├── jquery.flot.time.js │ └── jquery.flot.time.min.js │ ├── fullcalendar │ ├── fullcalendar.css │ ├── fullcalendar.js │ ├── fullcalendar.min.css │ ├── fullcalendar.min.js │ └── fullcalendar.print.css │ ├── iCheck │ ├── all.css │ ├── flat │ │ ├── _all.css │ │ ├── aero.css │ │ ├── aero.png │ │ ├── aero@2x.png │ │ ├── blue.css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── flat.css │ │ ├── flat.png │ │ ├── flat@2x.png │ │ ├── green.css │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── grey.css │ │ ├── grey.png │ │ ├── grey@2x.png │ │ ├── orange.css │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── pink.css │ │ ├── pink.png │ │ ├── pink@2x.png │ │ ├── purple.css │ │ ├── purple.png │ │ ├── purple@2x.png │ │ ├── red.css │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── yellow.css │ │ ├── yellow.png │ │ └── yellow@2x.png │ ├── futurico │ │ ├── futurico.css │ │ ├── futurico.png │ │ └── futurico@2x.png │ ├── icheck.js │ ├── icheck.min.js │ ├── line │ │ ├── _all.css │ │ ├── aero.css │ │ ├── blue.css │ │ ├── green.css │ │ ├── grey.css │ │ ├── line.css │ │ ├── line.png │ │ ├── line@2x.png │ │ ├── orange.css │ │ ├── pink.css │ │ ├── purple.css │ │ ├── red.css │ │ └── yellow.css │ ├── minimal │ │ ├── _all.css │ │ ├── aero.css │ │ ├── aero.png │ │ ├── aero@2x.png │ │ ├── blue.css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── green.css │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── grey.css │ │ ├── grey.png │ │ ├── grey@2x.png │ │ ├── minimal.css │ │ ├── minimal.png │ │ ├── minimal@2x.png │ │ ├── orange.css │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── pink.css │ │ ├── pink.png │ │ ├── pink@2x.png │ │ ├── purple.css │ │ ├── purple.png │ │ ├── purple@2x.png │ │ ├── red.css │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── yellow.css │ │ ├── yellow.png │ │ └── yellow@2x.png │ ├── polaris │ │ ├── polaris.css │ │ ├── polaris.png │ │ └── polaris@2x.png │ └── square │ │ ├── _all.css │ │ ├── aero.css │ │ ├── aero.png │ │ ├── aero@2x.png │ │ ├── blue.css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── green.css │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── grey.css │ │ ├── grey.png │ │ ├── grey@2x.png │ │ ├── orange.css │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── pink.css │ │ ├── pink.png │ │ ├── pink@2x.png │ │ ├── purple.css │ │ ├── purple.png │ │ ├── purple@2x.png │ │ ├── red.css │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── square.css │ │ ├── square.png │ │ ├── square@2x.png │ │ ├── yellow.css │ │ ├── yellow.png │ │ └── yellow@2x.png │ ├── input-mask │ ├── jquery.inputmask.date.extensions.js │ ├── jquery.inputmask.extensions.js │ ├── jquery.inputmask.js │ ├── jquery.inputmask.numeric.extensions.js │ ├── jquery.inputmask.phone.extensions.js │ ├── jquery.inputmask.regex.extensions.js │ └── phone-codes │ │ ├── phone-be.json │ │ ├── phone-codes.json │ │ └── readme.txt │ ├── ionslider │ ├── img │ │ ├── sprite-skin-flat.png │ │ └── sprite-skin-nice.png │ ├── ion.rangeSlider.css │ ├── ion.rangeSlider.min.js │ ├── ion.rangeSlider.skinFlat.css │ └── ion.rangeSlider.skinNice.css │ ├── jQuery │ └── jQuery-2.1.4.min.js │ ├── jQueryUI │ ├── jquery-ui.js │ └── jquery-ui.min.js │ ├── jvectormap │ ├── jquery-jvectormap-1.2.2.css │ ├── jquery-jvectormap-1.2.2.min.js │ └── jquery-jvectormap-world-mill-en.js │ ├── knob │ └── jquery.knob.js │ ├── morris │ ├── morris.css │ ├── morris.js │ └── morris.min.js │ ├── pace │ └── pace.js │ ├── plupload │ ├── Moxie.swf │ ├── Moxie.xap │ ├── i18n │ │ └── zh_CN.js │ ├── jquery.plupload.queue │ │ ├── css │ │ │ └── jquery.plupload.queue.css │ │ ├── img │ │ │ ├── backgrounds.gif │ │ │ ├── buttons-disabled.png │ │ │ ├── buttons.png │ │ │ ├── delete.gif │ │ │ ├── done.gif │ │ │ ├── error.gif │ │ │ ├── throbber.gif │ │ │ └── transp50.png │ │ ├── jquery.plupload.queue.js │ │ └── jquery.plupload.queue.min.js │ ├── jquery.ui.plupload │ │ ├── css │ │ │ └── jquery.ui.plupload.css │ │ ├── img │ │ │ ├── loading.gif │ │ │ └── plupload.png │ │ ├── jquery.ui.plupload.js │ │ └── jquery.ui.plupload.min.js │ ├── moxie.js │ ├── moxie.min.js │ ├── plupload.dev.js │ ├── plupload.full.min.js │ └── plupload.min.js │ ├── qiniu │ ├── qiniu.min.js │ ├── qiniu.progress.js │ └── qiniu.progress2.js │ ├── select2 │ ├── i18n │ │ ├── az.js │ │ ├── bg.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── en.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ko.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt-BR.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-CN.js │ │ └── zh-TW.js │ ├── select2.css │ ├── select2.full.js │ ├── select2.full.min.js │ ├── select2.js │ ├── select2.min.css │ └── select2.min.js │ ├── slimScroll │ ├── jquery.slimscroll.js │ └── jquery.slimscroll.min.js │ ├── sparkline │ ├── jquery.sparkline.js │ └── jquery.sparkline.min.js │ ├── tablesorter │ ├── jquery.tablesorter.js │ └── tables.js │ └── timepicker │ ├── bootstrap-timepicker.css │ ├── bootstrap-timepicker.js │ ├── bootstrap-timepicker.min.css │ └── bootstrap-timepicker.min.js └── server.php /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/.htaccess -------------------------------------------------------------------------------- /.idea/blade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/.idea/blade.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/monolog-web.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/.idea/monolog-web.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/README.md -------------------------------------------------------------------------------- /app/commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/config/app.php -------------------------------------------------------------------------------- /app/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/config/auth.php -------------------------------------------------------------------------------- /app/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/config/cache.php -------------------------------------------------------------------------------- /app/config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/config/compile.php -------------------------------------------------------------------------------- /app/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/config/database.php -------------------------------------------------------------------------------- /app/config/install.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/config/mail.php -------------------------------------------------------------------------------- /app/config/packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/config/queue.php -------------------------------------------------------------------------------- /app/config/remote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/config/remote.php -------------------------------------------------------------------------------- /app/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/config/services.php -------------------------------------------------------------------------------- /app/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/config/session.php -------------------------------------------------------------------------------- /app/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/config/view.php -------------------------------------------------------------------------------- /app/config/workbench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/config/workbench.php -------------------------------------------------------------------------------- /app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/Api/ApiAuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/controllers/Api/ApiAuthController.php -------------------------------------------------------------------------------- /app/controllers/Api/ApiContactsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/controllers/Api/ApiContactsController.php -------------------------------------------------------------------------------- /app/controllers/Api/ApiReportsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/controllers/Api/ApiReportsController.php -------------------------------------------------------------------------------- /app/controllers/Api/ApiStatuesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/controllers/Api/ApiStatuesController.php -------------------------------------------------------------------------------- /app/controllers/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/controllers/AuthController.php -------------------------------------------------------------------------------- /app/controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/controllers/BaseController.php -------------------------------------------------------------------------------- /app/controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/controllers/HomeController.php -------------------------------------------------------------------------------- /app/controllers/ReportsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/controllers/ReportsController.php -------------------------------------------------------------------------------- /app/controllers/SettingsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/controllers/SettingsController.php -------------------------------------------------------------------------------- /app/controllers/ShareController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/controllers/ShareController.php -------------------------------------------------------------------------------- /app/controllers/StatuesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/controllers/StatuesController.php -------------------------------------------------------------------------------- /app/controllers/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/controllers/UsersController.php -------------------------------------------------------------------------------- /app/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /app/database/migrations/2015_9_8_072110_create_albums_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/database/migrations/2015_9_8_072110_create_albums_table.php -------------------------------------------------------------------------------- /app/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/FollowerTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/database/seeds/FollowerTableSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/GuessTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/database/seeds/GuessTableSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/ProfileTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/database/seeds/ProfileTableSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/ReportTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/database/seeds/ReportTableSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/StatueTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/database/seeds/StatueTableSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/UserTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/database/seeds/UserTableSeeder.php -------------------------------------------------------------------------------- /app/filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/filters.php -------------------------------------------------------------------------------- /app/huijimuhe/Auth/Guard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Auth/Guard.php -------------------------------------------------------------------------------- /app/huijimuhe/Auth/UserCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Auth/UserCache.php -------------------------------------------------------------------------------- /app/huijimuhe/Auth/UserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Auth/UserProvider.php -------------------------------------------------------------------------------- /app/huijimuhe/Config/Validators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Config/Validators.php -------------------------------------------------------------------------------- /app/huijimuhe/Core/Exceptions/EntityNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Core/Exceptions/EntityNotFoundException.php -------------------------------------------------------------------------------- /app/huijimuhe/Core/Exceptions/NotAuthorizedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Core/Exceptions/NotAuthorizedException.php -------------------------------------------------------------------------------- /app/huijimuhe/Core/Exceptions/UserExistException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Core/Exceptions/UserExistException.php -------------------------------------------------------------------------------- /app/huijimuhe/Core/Listeners/AuthListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Core/Listeners/AuthListener.php -------------------------------------------------------------------------------- /app/huijimuhe/Core/Listeners/CreatorListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Core/Listeners/CreatorListener.php -------------------------------------------------------------------------------- /app/huijimuhe/Core/Listeners/DeleterListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Core/Listeners/DeleterListener.php -------------------------------------------------------------------------------- /app/huijimuhe/Core/Listeners/UpdaterListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Core/Listeners/UpdaterListener.php -------------------------------------------------------------------------------- /app/huijimuhe/Core/Repo/EloquentRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Core/Repo/EloquentRepository.php -------------------------------------------------------------------------------- /app/huijimuhe/Core/Repo/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Core/Repo/Entity.php -------------------------------------------------------------------------------- /app/huijimuhe/Presenters/StatuePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Presenters/StatuePresenter.php -------------------------------------------------------------------------------- /app/huijimuhe/Presenters/UserPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Presenters/UserPresenter.php -------------------------------------------------------------------------------- /app/huijimuhe/Qiniu/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Qiniu/Auth.php -------------------------------------------------------------------------------- /app/huijimuhe/Qiniu/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Qiniu/Config.php -------------------------------------------------------------------------------- /app/huijimuhe/Qiniu/Etag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Qiniu/Etag.php -------------------------------------------------------------------------------- /app/huijimuhe/Qiniu/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Qiniu/Functions.php -------------------------------------------------------------------------------- /app/huijimuhe/Qiniu/Http/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Qiniu/Http/Client.php -------------------------------------------------------------------------------- /app/huijimuhe/Qiniu/Http/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Qiniu/Http/Error.php -------------------------------------------------------------------------------- /app/huijimuhe/Qiniu/Http/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Qiniu/Http/Request.php -------------------------------------------------------------------------------- /app/huijimuhe/Qiniu/Http/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Qiniu/Http/Response.php -------------------------------------------------------------------------------- /app/huijimuhe/Qiniu/Processing/Operation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Qiniu/Processing/Operation.php -------------------------------------------------------------------------------- /app/huijimuhe/Qiniu/Processing/PersistentFop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Qiniu/Processing/PersistentFop.php -------------------------------------------------------------------------------- /app/huijimuhe/Qiniu/Storage/BucketManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Qiniu/Storage/BucketManager.php -------------------------------------------------------------------------------- /app/huijimuhe/Qiniu/Storage/FormUploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Qiniu/Storage/FormUploader.php -------------------------------------------------------------------------------- /app/huijimuhe/Qiniu/Storage/ResumeUploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Qiniu/Storage/ResumeUploader.php -------------------------------------------------------------------------------- /app/huijimuhe/Qiniu/Storage/UploadManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Qiniu/Storage/UploadManager.php -------------------------------------------------------------------------------- /app/huijimuhe/Qiniu/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Qiniu/Utils.php -------------------------------------------------------------------------------- /app/huijimuhe/Repo/BaiduLbsRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Repo/BaiduLbsRepository.php -------------------------------------------------------------------------------- /app/huijimuhe/Repo/ReportRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Repo/ReportRepository.php -------------------------------------------------------------------------------- /app/huijimuhe/Repo/SettingRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Repo/SettingRepository.php -------------------------------------------------------------------------------- /app/huijimuhe/Repo/StatueRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Repo/StatueRepository.php -------------------------------------------------------------------------------- /app/huijimuhe/Repo/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Repo/UserRepository.php -------------------------------------------------------------------------------- /app/huijimuhe/Repo/api/ReportRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Repo/api/ReportRepository.php -------------------------------------------------------------------------------- /app/huijimuhe/Repo/api/StatueRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Repo/api/StatueRepository.php -------------------------------------------------------------------------------- /app/huijimuhe/Repo/api/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Repo/api/UserRepository.php -------------------------------------------------------------------------------- /app/huijimuhe/Support/Easemob.class.php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Support/Easemob.class.php.php -------------------------------------------------------------------------------- /app/huijimuhe/Support/snoopy.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/huijimuhe/Support/snoopy.class.php -------------------------------------------------------------------------------- /app/lang/ch/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/lang/ch/pagination.php -------------------------------------------------------------------------------- /app/lang/ch/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/lang/ch/reminders.php -------------------------------------------------------------------------------- /app/lang/ch/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/lang/ch/validation.php -------------------------------------------------------------------------------- /app/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/lang/en/pagination.php -------------------------------------------------------------------------------- /app/lang/en/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/lang/en/reminders.php -------------------------------------------------------------------------------- /app/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/lang/en/validation.php -------------------------------------------------------------------------------- /app/models/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/models/Account.php -------------------------------------------------------------------------------- /app/models/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/models/Contact.php -------------------------------------------------------------------------------- /app/models/Guess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/models/Guess.php -------------------------------------------------------------------------------- /app/models/Open.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/models/Open.php -------------------------------------------------------------------------------- /app/models/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/models/Profile.php -------------------------------------------------------------------------------- /app/models/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/models/Report.php -------------------------------------------------------------------------------- /app/models/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/models/Setting.php -------------------------------------------------------------------------------- /app/models/Statue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/models/Statue.php -------------------------------------------------------------------------------- /app/models/StatueJSON.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/models/StatueJSON.php -------------------------------------------------------------------------------- /app/models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/models/User.php -------------------------------------------------------------------------------- /app/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/routes.php -------------------------------------------------------------------------------- /app/start/artisan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/start/artisan.php -------------------------------------------------------------------------------- /app/start/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huijimuhe/monolog-web/HEAD/app/start/global.php -------------------------------------------------------------------------------- /app/start/local.php: -------------------------------------------------------------------------------- 1 |