├── public
├── favicon.ico
├── robots.txt
├── .htaccess
├── web.config
└── index.php
├── routes
├── api.php
└── web.php
├── app
├── Listeners
│ └── .gitkeep
├── Policies
│ └── .gitkeep
├── Events
│ └── Event.php
├── Http
│ ├── Requests
│ │ └── Request.php
│ ├── Middleware
│ │ ├── EncryptCookies.php
│ │ ├── VerifyCsrfToken.php
│ │ ├── RedirectIfAuthenticated.php
│ │ └── Authenticate.php
│ ├── Controllers
│ │ ├── Controller.php
│ │ ├── PagesController.php
│ │ ├── Auth
│ │ │ ├── PasswordController.php
│ │ │ ├── ForgotPasswordController.php
│ │ │ ├── AuthController.php
│ │ │ ├── RegisterController.php
│ │ │ └── LoginController.php
│ │ └── SurveysController.php
│ └── Kernel.php
├── Providers
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── EventServiceProvider.php
│ └── RouteServiceProvider.php
├── Jobs
│ └── Job.php
├── Console
│ ├── Commands
│ │ └── Inspire.php
│ └── Kernel.php
├── Survey.php
├── User.php
└── Exceptions
│ └── Handler.php
├── database
├── seeds
│ ├── .gitkeep
│ └── DatabaseSeeder.php
├── .gitignore
├── migrations
│ ├── .gitkeep
│ ├── 2014_10_12_100000_create_password_resets_table.php
│ ├── 2014_10_12_000000_create_users_table.php
│ └── 2016_10_03_133437_create_surveys_table.php
└── factories
│ └── ModelFactory.php
├── resources
├── lang
│ ├── en
│ │ ├── globals.php
│ │ ├── user.php
│ │ ├── pagination.php
│ │ ├── auth.php
│ │ ├── passwords.php
│ │ └── validation.php
│ └── mn
│ │ ├── globals.php
│ │ ├── user.php
│ │ ├── pagination.php
│ │ ├── passwords.php
│ │ └── validation.php
└── views
│ ├── vendor
│ └── .gitkeep
│ ├── partial
│ └── header.blade.php
│ ├── js
│ └── main.js
│ ├── landing.blade.php
│ ├── auth
│ ├── emails
│ │ └── password.blade.php
│ ├── passwords
│ │ ├── email.blade.php
│ │ └── reset.blade.php
│ ├── login.blade.php
│ └── register.blade.php
│ ├── pages
│ ├── dic.blade.php
│ ├── index.blade.php
│ ├── show.blade.php
│ └── new_survey.blade.php
│ ├── errors
│ └── 503.blade.php
│ └── app.blade.php
├── bootstrap
├── cache
│ └── .gitignore
├── autoload.php
└── app.php
├── storage
├── logs
│ └── .gitignore
├── app
│ ├── public
│ │ └── .gitignore
│ └── .gitignore
├── framework
│ ├── cache
│ │ └── .gitignore
│ ├── views
│ │ └── .gitignore
│ ├── sessions
│ │ └── .gitignore
│ └── .gitignore
└── database.sqlite
├── .gitattributes
├── .gitignore
├── .htaccess
├── readme.md
├── package.json
├── .env.example
├── gulpfile.js
├── tests
├── TestCase.php
├── PagesControllerTest.php
├── SurveyTest.php
├── UserTest.php
└── SurveysControllerTest.php
├── server.php
├── config
├── compile.php
├── services.php
├── view.php
├── broadcasting.php
├── filesystems.php
├── cache.php
├── queue.php
├── auth.php
├── database.php
├── mail.php
├── session.php
└── app.php
├── LICENSE
├── phpunit.xml
├── composer.json
└── artisan
/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/routes/api.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/Listeners/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/Policies/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/database/seeds/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite
2 |
--------------------------------------------------------------------------------
/database/migrations/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/resources/lang/en/globals.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/views/vendor/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/resources/views/partial/header.blade.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/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/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/resources/views/js/main.js:
--------------------------------------------------------------------------------
1 | var React = require('react');
2 |
--------------------------------------------------------------------------------
/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | *.css linguist-vendored
3 | *.scss linguist-vendored
4 |
--------------------------------------------------------------------------------
/storage/database.sqlite:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/devtools/HEAD/storage/database.sqlite
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | /vendor
2 | /node_modules
3 | /public/storage
4 | Homestead.yaml
5 | Homestead.json
6 | .env
7 |
--------------------------------------------------------------------------------
/.htaccess:
--------------------------------------------------------------------------------
1 |
Нэвтэр бүртгүүл
7 |