
Create a Laravel project by pulling images from the docker repo, selecting PHP 8, and configuring Postgres with a cache server, then review the docker-compose.yaml and the Laravel YAML script.
Build a Laravel docker image, configure the env file for postgres, set database host and port, and run the initial setup with docker-compose before exploring models and controllers.
implement the store method to save todos to the database, return a json response with status 200, and verify that the records are populated before the next api retrieval.
Implement Laravel API endpoints for a todo list using Eloquent to fetch all todos and find by id, returning JSON responses.
Delete a todo via a Laravel API by removing it by id, confirming the database deletion, and returning a 200 response, then prepare for web and mobile integration.
Create an ionic http service to fetch and manage todos using capacitor http, define a todo interface, and implement get and post requests.
Build the Ionic Vue homepage, create a home view, and implement two components (form and todo list) with services for fetch, create, update, and delete via async setup.
Create an Ionic Vue to-do list item component by building a reusable template driven by item data, defining props for update status, and implementing update and delete methods.
This lecture demonstrates a bug fix workflow in an Ionic Vue todo list app, debugging rendering issues, loading initial data on mounted, and updating to-do items.
Create an Ionic Vue to-do form that inputs a title, sets completed to false, and adds the item to the list with v-model and a submit button on an ion-grid.
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 Ionic Vue. It focuses heavily on designing a backend RESTful Web Service with CRUD functionality that sends data to an Ionic 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
Ionic 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 Ionic Vue and Laravel