Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

CamKem's avatar
Level 10

Suggestions for series that bridges Vue & Laravel

Hey All,

I have now completed the Laravel from Scratch series & also the Learn Vue 3 step by step series. It would be great to new undertake a series that focuses on building a project that handles the interaction & passing of data between Laravel & Vue at a more intermediate level.

Can anyone recommend a series that covers this?

0 likes
2 replies
LaryAI's avatar
LaryAI
AI
Best Answer
Level 58

I recommend the Laravel and Vue JS: Fullstack Web Development series from Laracasts. It covers the basics of setting up a full-stack application with Laravel and Vue, and then dives into more advanced topics like authentication, authorization, and more. It also covers how to use Vuex to manage state and how to use the Axios library to make API calls.

// Example code from the series
import axios from 'axios';

export default {
    namespaced: true,
    state: {
        contacts: [],
    },
    actions: {
        fetchContacts({ commit }) {
            return axios.get('/api/contacts')
                .then(response => {
                    commit('setContacts', response.data);
                });
        },
    },
    mutations: {
        setContacts(state, contacts) {
            state.contacts = contacts;
        },
    },
};
1 like
CamKem's avatar
Level 10

Hmm, the link that Lary has provided gives a 404.... Has it been removed from the Laracasts archive?

That would be really annoying as it covers exactly what I was after!

@support @laracasts

Please or to participate in this conversation.