A survey application built with Laravel 9 (API), Vue 3 and Tailwind CSS.
Clone the repository
git clone https://github.com/Wansrif/laravel-vue-survey.git
cd laravel-vue-survey
Install dependencies
composer install
Create a copy of the .env file
cp .env.example .env
Update the .env file with your database details
Generate an application key & run database migrations
php artisan key:generate
php artisan migrate
Once that's done, you should be able to run the app on your localhost.
php artisan serve
Change into the frontend directory
cd vue
Install dependencies & start the development server
npm install && npm run dev
If you'd like to contribute to the project, please open a pull request. let me see what you can add!