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

Laracast13's avatar

laravel vue 3 road map

Hello I want learn vue for Laravel. But can not understand where to start, can anyone give me advice or video tutorial which will be useful

0 likes
4 replies
LaryAI's avatar
Level 58

There are many resources available to learn Vue.js for Laravel. Here are a few suggestions:

  1. The official Vue.js documentation is a great place to start. It provides a comprehensive guide to Vue.js and covers all the basics.

  2. Laracasts has a series of video tutorials on Vue.js for Laravel. You can find them here: https://laracasts.com/series/learn-vue-2-step-by-step

  3. Vue Mastery is another great resource for learning Vue.js. They have a free course on Vue.js fundamentals that you can check out here: https://www.vuemastery.com/courses/intro-to-vue-js/vue-instance

  4. If you prefer reading, you can check out the book "Learning Vue.js 2" by Olga Filipova. It covers all the basics of Vue.js and provides practical examples.

Here's a simple example of how to use Vue.js with Laravel:

<!-- app.blade.php -->
<html>
<head>
    <title>My App</title>
    <meta name="csrf-token" content="{{ csrf_token() }}">
</head>
<body>
    <div id="app">
        <h1>{{ message }}</h1>
    </div>
    <script src="{{ asset('js/app.js') }}"></script>
</body>
</html>
// app.js
require('./bootstrap');

window.Vue = require('vue');

const app = new Vue({
    el: '#app',
    data: {
        message: 'Hello Vue!'
    }
});

Please or to participate in this conversation.