
Build a full stack to-do list app with Laravel and Vue. Learn to add, modify, and delete tasks, handle HTTP requests, serialize data, and enable parent-child component communication.
Review the course disclaimer to confirm we will use only the specified front end and back end frameworks, Laravel and Vue, and decide if the course aligns with your goals.
Install Docker desktop and Kool to set up the level course environment, start the Docker engine, and use Kool to run and test multiple projects with consistent configurations.
Create a Laravel project using the preset, configure php 8, postgres, and redis with docker compose, and review the yaml commands and engine x configuration for deployment.
Build a Laravel docker image by configuring Postgres database connections and ports, run the initial install, and learn container management while verifying port 80 access.
Learn to create a Laravel model and migration with artisan, define title and completed fields, run migrations, verify tables, and start building an api with controllers.
Create an api/todo controller with Laravel’s Artisan make:controller, including index, store, show, update, and destroy methods. Then register the resource routes and verify them with artisan route:list.
Implement the Laravel API store method to create todo items from requests, save them to the database, and return a json response with status 200, testing by creating todos.
Fill in Laravel controller methods to fetch all todos and a single todo using Eloquent, employing findOrFail with the ID, and return json responses with a 200 status.
Update a todo via the Laravel API by using the request id and the request object, then return the updated todo with a 200 status.
Learn how to delete a to-do item using a Laravel API, call the delete function, verify removal in the database with a 200 response, and prepare for frontend integration.
Install Vue CLI globally, verify the version, scaffold a new project with Vue CLI, select Babel and TypeScript, choose Vue 3, and run the dev server to view at localhost.
Install axios and the Element Plus UI library with npm install, import axios in the main file, and configure the UI components to start building the todo list.
Create initial Vue components, including a to-do list fed by a new form component, and explore class components with the option decorator and the composition API.
Create a todo form component with a title field and a completed boolean, bind inputs, and emit an event to pass the new todo data to the parent.
Use Vue events to pass data between child and parent components, move to-do logic to a parent method, save the to-do, and log a notification to the console.
Finish the tiny todo form by adding an if-else check for a title longer than three characters, emit a warning when too short, and clear the form after submission.
Display todos by loading data via axios.get from a local rest API, render a table with title and completed columns, and wire up the form for updates and deletions.
Build a todo list with Laravel and Vue by implementing CRUD functions: create, update, and delete using axios, and defining a todo interface for id, title, and completed.
Finish the Vue table UI to manage the to-do list by adding an operations column, toggling the completed status, and a delete confirmation workflow.
This bonus video offers a 30% lifetime discount for code brains students, with monthly updates and access to a special forum; use the code new 30 for unlimited access.
If you're tired of long courses and just want to learn basic web development this course is for you. This course was built with the goal of teaching the students how to use Laravel and Vue. It focuses heavily on designing a backend RESTful Web Service with CRUD functionality that sends data to an Vue Front End Application. This is an entry-level course that focuses on building and reinforcing some of the techniques used by developers to build a full-stack application.
In this course, we start by learning what tools you need to create a full-stack Before taking this course, it is recommended that you have an understanding of skills such as Javascript, PHP, Basic SQL, or ORM development. If not we'll touch on some of those topics early in the course but it is still recommended to have a better understanding.
When going through this course you may come across subjects that you are familiar with as well as those that are completely new to you.
Some of the topics touched upon include
Vue
Child Components
HTTP Requests with Fetch
CRUD Methods
PHP Programming Language
Laravel
Database Migrations
ORMs
When taking this course, please know that you can take your time because you will get access to support along the way. By the time you finish this course, you should feel comfortable creating a full-stack web application with Vue and Laravel