├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── AuthController.php │ │ ├── Controller.php │ │ ├── DashboardController.php │ │ └── SurveyController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ ├── StoreSurveyAnswerRequest.php │ │ ├── StoreSurveyRequest.php │ │ └── UpdateSurveyRequest.php │ └── Resources │ │ ├── SurveyAnswerResource.php │ │ ├── SurveyQuestionResource.php │ │ ├── SurveyResource.php │ │ └── SurveyResourceDashboard.php ├── Models │ ├── Survey.php │ ├── SurveyAnswer.php │ ├── SurveyQuestion.php │ ├── SurveyQuestionAnswer.php │ └── User.php └── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2021_12_19_113733_create_surveys_table.php │ ├── 2021_12_19_114138_create_survey_questions_table.php │ ├── 2021_12_19_114318_create_survey_answers_table.php │ └── 2021_12_19_114337_create_survey_question_answers_table.php └── seeders │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── favicon.ico ├── images │ └── .gitignore ├── index.php ├── robots.txt └── web.config ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── vue ├── .env.example ├── .gitignore ├── .vscode │ └── extensions.json ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ └── favicon.ico ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── axios.js │ ├── components │ │ ├── Alert.vue │ │ ├── AuthLayout.vue │ │ ├── DefaultLayout.vue │ │ ├── Notification.vue │ │ ├── PageComponent.vue │ │ ├── SurveyListItem.vue │ │ ├── core │ │ │ ├── DashboardCard.vue │ │ │ ├── TButton.vue │ │ │ ├── TButtonLoading.vue │ │ │ └── TInput.vue │ │ ├── editor │ │ │ └── QuestionEditor.vue │ │ └── viewer │ │ │ └── QuestionViewer.vue │ ├── index.css │ ├── main.js │ ├── router │ │ └── index.js │ ├── store │ │ └── index.js │ └── views │ │ ├── Dashboard.vue │ │ ├── Login.vue │ │ ├── NotFound.vue │ │ ├── Register.vue │ │ ├── SurveyPublicView.vue │ │ ├── SurveyView.vue │ │ └── Surveys.vue ├── tailwind.config.js └── vite.config.js └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Http/Controllers/AuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Http/Controllers/DashboardController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SurveyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Http/Controllers/SurveyController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreSurveyAnswerRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Http/Requests/StoreSurveyAnswerRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreSurveyRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Http/Requests/StoreSurveyRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateSurveyRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Http/Requests/UpdateSurveyRequest.php -------------------------------------------------------------------------------- /app/Http/Resources/SurveyAnswerResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Http/Resources/SurveyAnswerResource.php -------------------------------------------------------------------------------- /app/Http/Resources/SurveyQuestionResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Http/Resources/SurveyQuestionResource.php -------------------------------------------------------------------------------- /app/Http/Resources/SurveyResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Http/Resources/SurveyResource.php -------------------------------------------------------------------------------- /app/Http/Resources/SurveyResourceDashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Http/Resources/SurveyResourceDashboard.php -------------------------------------------------------------------------------- /app/Models/Survey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Models/Survey.php -------------------------------------------------------------------------------- /app/Models/SurveyAnswer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Models/SurveyAnswer.php -------------------------------------------------------------------------------- /app/Models/SurveyQuestion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Models/SurveyQuestion.php -------------------------------------------------------------------------------- /app/Models/SurveyQuestionAnswer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Models/SurveyQuestionAnswer.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/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/MobinaJafarian/laravel-vue-survey/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2021_12_19_113733_create_surveys_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/database/migrations/2021_12_19_113733_create_surveys_table.php -------------------------------------------------------------------------------- /database/migrations/2021_12_19_114138_create_survey_questions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/database/migrations/2021_12_19_114138_create_survey_questions_table.php -------------------------------------------------------------------------------- /database/migrations/2021_12_19_114318_create_survey_answers_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/database/migrations/2021_12_19_114318_create_survey_answers_table.php -------------------------------------------------------------------------------- /database/migrations/2021_12_19_114337_create_survey_question_answers_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/database/migrations/2021_12_19_114337_create_survey_question_answers_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/public/web.config -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.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/MobinaJafarian/laravel-vue-survey/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vue/.env.example: -------------------------------------------------------------------------------- 1 | VITE_API_BASE_URL = http://localhost:8000 2 | -------------------------------------------------------------------------------- /vue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/.gitignore -------------------------------------------------------------------------------- /vue/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["johnsoncodehk.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/README.md -------------------------------------------------------------------------------- /vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/index.html -------------------------------------------------------------------------------- /vue/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/package-lock.json -------------------------------------------------------------------------------- /vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/package.json -------------------------------------------------------------------------------- /vue/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/postcss.config.js -------------------------------------------------------------------------------- /vue/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/public/favicon.ico -------------------------------------------------------------------------------- /vue/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/App.vue -------------------------------------------------------------------------------- /vue/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/assets/logo.png -------------------------------------------------------------------------------- /vue/src/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/axios.js -------------------------------------------------------------------------------- /vue/src/components/Alert.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/components/Alert.vue -------------------------------------------------------------------------------- /vue/src/components/AuthLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/components/AuthLayout.vue -------------------------------------------------------------------------------- /vue/src/components/DefaultLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/components/DefaultLayout.vue -------------------------------------------------------------------------------- /vue/src/components/Notification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/components/Notification.vue -------------------------------------------------------------------------------- /vue/src/components/PageComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/components/PageComponent.vue -------------------------------------------------------------------------------- /vue/src/components/SurveyListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/components/SurveyListItem.vue -------------------------------------------------------------------------------- /vue/src/components/core/DashboardCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/components/core/DashboardCard.vue -------------------------------------------------------------------------------- /vue/src/components/core/TButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/components/core/TButton.vue -------------------------------------------------------------------------------- /vue/src/components/core/TButtonLoading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/components/core/TButtonLoading.vue -------------------------------------------------------------------------------- /vue/src/components/core/TInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/components/core/TInput.vue -------------------------------------------------------------------------------- /vue/src/components/editor/QuestionEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/components/editor/QuestionEditor.vue -------------------------------------------------------------------------------- /vue/src/components/viewer/QuestionViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/components/viewer/QuestionViewer.vue -------------------------------------------------------------------------------- /vue/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/index.css -------------------------------------------------------------------------------- /vue/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/main.js -------------------------------------------------------------------------------- /vue/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/router/index.js -------------------------------------------------------------------------------- /vue/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/store/index.js -------------------------------------------------------------------------------- /vue/src/views/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/views/Dashboard.vue -------------------------------------------------------------------------------- /vue/src/views/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/views/Login.vue -------------------------------------------------------------------------------- /vue/src/views/NotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/views/NotFound.vue -------------------------------------------------------------------------------- /vue/src/views/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/views/Register.vue -------------------------------------------------------------------------------- /vue/src/views/SurveyPublicView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/views/SurveyPublicView.vue -------------------------------------------------------------------------------- /vue/src/views/SurveyView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/views/SurveyView.vue -------------------------------------------------------------------------------- /vue/src/views/Surveys.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/src/views/Surveys.vue -------------------------------------------------------------------------------- /vue/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/tailwind.config.js -------------------------------------------------------------------------------- /vue/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/vue/vite.config.js -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobinaJafarian/laravel-vue-survey/HEAD/webpack.mix.js --------------------------------------------------------------------------------