- laravel new laravel-react-survey
- php artisan migrate
- php artisan serve
- php artisan route:list
- php artisan storage:link
- php artisan make:controller AuthController
- php artisan make:controller SurveyController --api
- php artisan make:controller DashboardController
- php artisan make:request LoginRequest
- php artisan make:request SignupRequest
- php artisan make:request StoreSurveyRequest
- php artisan make:request UpdateSurveyRequest
- php artisan make:request StoreSurveyAnswerRequest
- php artisan make:resource SurveyResource
- php artisan make:resource SurveyQuestionResource
- php artisan make:resource SurveyAnswerResource
- php artisan make:resource SurveyDashboardResource
- php artisan make:model Survey -mcrR
- php artisan make:model SurveyQuestion -m
- php artisan make:model SurveyAnswer -m
- php artisan make:model SurveyQuestionAnswer -m
- php artisan migrate:fresh