In this tutorial, I’ll show you how to create a landing page using a combination of Laravel 8, Vue.js, and Twilio SendGrid. It’s a reasonably long tutorial, and by the end of it, I’m confident that you’ll have learned a lot. ...
A simple CRUD (Create, Read, Update, Delete) application built with Laravel 11 API as the backend and Vue.js as the frontend. This project demonstrates how to create a seamless single-page application (SPA) with Vue.js consuming a Laravel API. Ideal for beginners looking to learn full-stac...
Basic knowledge of the Vue.js framework would be nice, but is not essential Backend setup Begin by setting up all the necessary backend configurations required for the chat application. Scaffold a new Laravel project To get started with building your chat application, you need to create a new ...
I have recently started to learn Laravel and try to now get into Vue.js at the same time. My project got a page,which displays a list of Users which get read out from the database. I now thought that it would be nice to be able to add a new User directly on that page so I ...
Laracasts founder Jeffrey Way has finished a video series on learning how to build modern Laravel apps using Inertia.js.
To create a Vue app, run the following command in the project’s directory terminal: npm create vue@latest This code will return a prompt where you can name the Vue app and select the features you will utilize in the Vue app. After naming the application and selecting the Vue Router for...
Hi everyone, I'm developing a SaaS application using Laravel and Vue.js. In my use case, users can choose from different templates where the data displayed is the same, but the design varies. How should I store and implement these templates so that u
Choice of frontend (React, Vue, Angular) and backend (Node.js, Laravel) framework Create your DB schema online with all possible field and connection types Connect your Github account and push code for initial and updated apps Schema updates are implemented via migrations, allowing you to keep ...
Step 1: Install Laravel Project composer create-project --prefer-dist laravel/laravel laraveldatatables The latest version is Laravel 11, so it will install Laravel 11 on your machine. Step 2: Setup MySQL database I created a new Database inside phpmyadmin called laratables like this: Now, ...
In this article, we’ll show how you can get started using Inertia.js and how to use it with Laravel, Vue.js, and Tailwind CSS to create a modern blog web app. We’ll also share how to make SPAs more SEO-friendly, as well as a few other tricks. ...