gitextract_qzjj77bo/ ├── .gitattributes ├── .gitignore ├── .php_cs.cache ├── app/ │ ├── Console/ │ │ └── Kernel.php │ ├── Exceptions/ │ │ └── Handler.php │ ├── Http/ │ │ ├── Controllers/ │ │ │ ├── Auth/ │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ └── ResetPasswordController.php │ │ │ ├── Controller.php │ │ │ ├── HomeController.php │ │ │ └── MessageController.php │ │ ├── Kernel.php │ │ └── Middleware/ │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ └── VerifyCsrfToken.php │ ├── Providers/ │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php │ └── User.php ├── artisan ├── bootstrap/ │ ├── app.php │ ├── autoload.php │ └── cache/ │ └── .gitignore ├── composer.json ├── config/ │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── compile.php │ ├── database.php │ ├── filesystems.php │ ├── mail.php │ ├── queue.php │ ├── services.php │ ├── session.php │ ├── talk.php │ └── view.php ├── database/ │ ├── .gitignore │ ├── factories/ │ │ └── ModelFactory.php │ ├── migrations/ │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ ├── 2015_10_05_110608_create_messages_table.php │ │ ├── 2015_10_05_110622_create_conversations_table.php │ │ └── 2017_05_11_170321_create_attachments_table.php │ └── seeds/ │ ├── DatabaseSeeder.php │ └── UsersTableSeeder.php ├── docker/ │ ├── nginx/ │ │ └── default.conf │ ├── php/ │ │ ├── Dockerfile │ │ ├── crontab │ │ ├── init.sh │ │ └── talk-worker.conf │ └── redis/ │ └── Dockerfile ├── docker-compose.yml.example ├── gulpfile.js ├── package.json ├── phpunit.xml ├── public/ │ ├── .htaccess │ ├── chat/ │ │ ├── README.txt │ │ ├── config.rb │ │ ├── css/ │ │ │ ├── reset.css │ │ │ └── style.css │ │ ├── index.html │ │ ├── js/ │ │ │ ├── index.js │ │ │ └── talk.js │ │ ├── license.txt │ │ └── scss/ │ │ └── style.scss │ ├── css/ │ │ └── app.css │ ├── index.php │ ├── js/ │ │ └── app.js │ ├── robots.txt │ └── web.config ├── readme.md ├── resources/ │ ├── assets/ │ │ ├── js/ │ │ │ ├── app.js │ │ │ ├── bootstrap.js │ │ │ └── components/ │ │ │ └── Example.vue │ │ └── sass/ │ │ ├── _variables.scss │ │ └── app.scss │ ├── lang/ │ │ └── en/ │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── views/ │ ├── ajax/ │ │ └── newMessageHtml.blade.php │ ├── auth/ │ │ ├── login.blade.php │ │ ├── passwords/ │ │ │ ├── email.blade.php │ │ │ └── reset.blade.php │ │ └── register.blade.php │ ├── errors/ │ │ └── 503.blade.php │ ├── home.blade.php │ ├── layouts/ │ │ ├── app.blade.php │ │ ├── chat.blade.php │ │ └── master.blade.php │ ├── messages/ │ │ └── conversations.blade.php │ ├── partials/ │ │ ├── chathistory.blade.php │ │ └── peoplelist.blade.php │ ├── vendor/ │ │ └── .gitkeep │ └── welcome.blade.php ├── routes/ │ ├── api.php │ ├── console.php │ └── web.php ├── server.php ├── storage/ │ ├── app/ │ │ └── .gitignore │ ├── framework/ │ │ ├── .gitignore │ │ ├── cache/ │ │ │ └── .gitignore │ │ ├── sessions/ │ │ │ └── .gitignore │ │ └── views/ │ │ └── .gitignore │ └── logs/ │ └── .gitignore ├── talk └── tests/ ├── ExampleTest.php └── TestCase.php