Laravel Backends for Vue.js 3 and Nuxt

Create your account and start learning

This lesson is free, but requires you to login.

or

Setup Development Environment for Backend

In this lesson, I’ll show you how to setup the Laravel powered backend on your local machine so that you can make requests to it from the Vue SPA.

Download the backend boilerplate with this command

git clone git@github.com:vueschool/laravel-course-backend.git

Install the backend dependenices with:

composer install
// or this dending on how composer is installed and setup
php composer.phar install

Start the dev server with

./vendor/bin/sail up

Links