├── public ├── favicon.ico ├── robots.txt ├── .htaccess ├── web.config ├── index.php └── svg │ ├── 404.svg │ ├── 503.svg │ └── 403.svg ├── database ├── .gitignore ├── seeds │ └── DatabaseSeeder.php ├── factories │ └── UserFactory.php └── migrations │ ├── 2019_05_16_040008_create_puzzles_table.php │ ├── 2019_01_16_125135_create_clues_table.php │ ├── 2019_03_11_235548_create_houses_table.php │ ├── 2019_03_11_235627_create_orientation_groups_table.php │ └── 2019_03_12_000109_create_orientation_group_leaders_table.php ├── bootstrap ├── cache │ └── .gitignore └── app.php ├── storage ├── logs │ └── .gitignore ├── app │ ├── public │ │ └── .gitignore │ └── .gitignore └── framework │ ├── testing │ └── .gitignore │ ├── views │ └── .gitignore │ ├── cache │ ├── data │ │ └── .gitignore │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── resources ├── views │ ├── vendor │ │ ├── mail │ │ │ ├── markdown │ │ │ │ ├── panel.blade.php │ │ │ │ ├── table.blade.php │ │ │ │ ├── footer.blade.php │ │ │ │ ├── promotion.blade.php │ │ │ │ ├── subcopy.blade.php │ │ │ │ ├── button.blade.php │ │ │ │ ├── header.blade.php │ │ │ │ ├── promotion │ │ │ │ │ └── button.blade.php │ │ │ │ ├── layout.blade.php │ │ │ │ └── message.blade.php │ │ │ └── html │ │ │ │ ├── table.blade.php │ │ │ │ ├── header.blade.php │ │ │ │ ├── subcopy.blade.php │ │ │ │ ├── promotion.blade.php │ │ │ │ ├── footer.blade.php │ │ │ │ ├── panel.blade.php │ │ │ │ ├── promotion │ │ │ │ └── button.blade.php │ │ │ │ ├── message.blade.php │ │ │ │ ├── button.blade.php │ │ │ │ ├── layout.blade.php │ │ │ │ └── themes │ │ │ │ └── default.css │ │ ├── pagination │ │ │ ├── simple-default.blade.php │ │ │ ├── simple-bootstrap-4.blade.php │ │ │ ├── semantic-ui.blade.php │ │ │ ├── default.blade.php │ │ │ └── bootstrap-4.blade.php │ │ └── notifications │ │ │ └── email.blade.php │ ├── fake404.blade.php │ ├── staging_warning.blade.php │ └── errors │ │ ├── 500.blade.php │ │ ├── 401.blade.php │ │ ├── 429.blade.php │ │ ├── 419.blade.php │ │ ├── 403.blade.php │ │ ├── 503.blade.php │ │ ├── 404.blade.php │ │ └── layout.blade.php ├── img │ ├── nic.jpg │ ├── frame_1.jpg │ ├── frame_2.jpg │ ├── olethros.png │ ├── trendlink.jpg │ ├── preview_logo.png │ └── vela.svg ├── embeds │ └── teaser.mp3 ├── fonts │ ├── calculator.ttf │ └── phage_regular.otf ├── lang │ └── en │ │ ├── pagination.php │ │ ├── auth.php │ │ ├── passwords.php │ │ └── validation.php ├── js │ ├── components │ │ └── ExampleComponent.vue │ ├── 404.js │ ├── bootstrap.js │ ├── preloader.js │ └── app.js └── sass │ ├── 404.scss │ ├── preloader.scss │ └── app.scss ├── .gitattributes ├── app ├── House.php ├── Puzzle.php ├── OGL.php ├── GroupChat.php ├── OG.php ├── Http │ ├── Middleware │ │ ├── EncryptCookies.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ ├── Authenticate.php │ │ ├── VerifyCsrfToken.php │ │ └── RedirectIfAuthenticated.php │ ├── Controllers │ │ ├── Controller.php │ │ └── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── ResetPasswordController.php │ │ │ ├── VerificationController.php │ │ │ └── RegisterController.php │ └── Kernel.php ├── Providers │ ├── BroadcastServiceProvider.php │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Clue.php ├── User.php ├── Console │ └── Kernel.php ├── TelegramBot │ └── Commands │ │ ├── PingCommand.php │ │ ├── HelloCommand.php │ │ ├── KeyCommand.php │ │ └── RegisterCommand.php └── Exceptions │ └── Handler.php ├── config ├── debug-server.php ├── tinker.php ├── view.php ├── services.php ├── hashing.php ├── broadcasting.php ├── trustedproxy.php ├── filesystems.php ├── telegram.php ├── queue.php ├── logging.php ├── cache.php ├── auth.php ├── database.php ├── mail.php ├── session.php └── app.php ├── tests ├── TestCase.php ├── Unit │ └── ExampleTest.php ├── Feature │ └── ExampleTest.php └── CreatesApplication.php ├── .gitignore ├── routes ├── channels.php ├── console.php ├── api.php └── web.php ├── server.php ├── webpack.mix.js ├── .env.example ├── phpunit.xml ├── package.json ├── composer.json ├── artisan └── readme.md /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/promotion.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/button.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }}: {{ $url }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/header.blade.php: -------------------------------------------------------------------------------- 1 | [{{ $slot }}]({{ $url }}) 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/promotion/button.blade.php: -------------------------------------------------------------------------------- 1 | [{{ $slot }}]({{ $url }}) 2 | -------------------------------------------------------------------------------- /resources/img/nic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSUTD/orientation2019/master/resources/img/nic.jpg -------------------------------------------------------------------------------- /resources/img/frame_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSUTD/orientation2019/master/resources/img/frame_1.jpg -------------------------------------------------------------------------------- /resources/img/frame_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSUTD/orientation2019/master/resources/img/frame_2.jpg -------------------------------------------------------------------------------- /resources/embeds/teaser.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSUTD/orientation2019/master/resources/embeds/teaser.mp3 -------------------------------------------------------------------------------- /resources/img/olethros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSUTD/orientation2019/master/resources/img/olethros.png -------------------------------------------------------------------------------- /resources/img/trendlink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSUTD/orientation2019/master/resources/img/trendlink.jpg -------------------------------------------------------------------------------- /resources/fonts/calculator.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSUTD/orientation2019/master/resources/fonts/calculator.ttf -------------------------------------------------------------------------------- /resources/img/preview_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSUTD/orientation2019/master/resources/img/preview_logo.png -------------------------------------------------------------------------------- /resources/fonts/phage_regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSUTD/orientation2019/master/resources/fonts/phage_regular.otf -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/table.blade.php: -------------------------------------------------------------------------------- 1 |