/laravel-vue-todo-list

A todo list made using Laravel (as the backend) and Vue.js 3 (as the front-end).

Primary LanguagePHP

Laravel 9 + Vite + Vue 3 + Tailwind CSS

This starter template includes:

  • Laravel 9
  • Vite
  • Vue 3
  • Tailwind CSS (w/ @tailwindcss/forms and @tailwindcss/aspect-ratio)
  • Vue Router
  • Axios
  • Headless UI
  • Heroicons
  • TypeScript

Installation

Install the composer dependencies:

composer install

Make a copy of the .env.example file named .env:

cp .env.example .env

Generate an app key:

php artisan key:generate

Install all package.json dependencies:

npm install

Run vite to server your assets/bundle:

npm run dev

Open a new terminal instance and serve the application:

php artisan serve