I built a pizza tracker with Laravel, React, and Inertia | Full Stack Tutorial

preview_player
Показать описание
I wanted to see if I could build something that worked like the Domino's pizza tracker, and I think I got pretty close!

Using Laravel, React, Inertia, and Tailwind, we'll put together a full stack application that features a live-updating pizza tracker and dashboard to manage orders. Let's get cooking!

- 0:00 What we're building
- 1:00 Starting the project
- 5:21 How Inertia works
- 8:38 Setting up the data
- 15:10 Creating dashboard screens
- 28:51 Working with forms
- 41:47 Building the tracker frontend
- 57:58 We're finished!

Рекомендации по теме
Комментарии
Автор

Great tutorial man, learned a lot. Hard to find react/inertia tutorials of this quality, keep them coming!

antomac
Автор

Awesome Andrew! Thanks for sharing this

dannydelgado
Автор

Glad you posted this a week ago. It's very difficult to find react inertia tutorials as they are usually made with Vue. I hope I can learn from if. Thanks

RTCDigitalS
Автор

This is top notch content! I feel like using Laravel, Inertia and React gives you the best of both worlds to develop with! More tutorials like this would be welcomed!

xThreex
Автор

Feeling good watching new videos!! Nice.

carlosmontiel
Автор

Great video as always!

Certainly going to take some inspiration from the "I built this" series as I've been wanting to do something similar

Icodestuff
Автор

This is possibly the most well earned sub this year. Well done.

tmanley
Автор

So clear and easy to understand. Thanks!

pjr
Автор

Very nice project. Learning good things. Thanks for sharing.

kwasiezor
Автор

Its just wow, you just created a CRUD applicaiton using Laravel+react+inertia in an 1 hour, im exited to try this now

tazme
Автор

Kudos!!! Great tutorial here! Thankyou👍

jkbullitt
Автор

great video, really well explained. thank you

literallyshane
Автор

Great tutorial and easy to follow!!. Thanks!

rcr
Автор

That was smooth and insightful!
Thank you Andrew.

Somcoders
Автор

I'd love to learn how to create a demo like you have with such fluidity

BDFire
Автор

What a nice job from you andrew. No doubt you're a great tutor. I will be waiting for a real estate property listing site from you andrew one of this days.

oyewalekayode
Автор

Great! thank you! It's fast jump into laravel+react.

ConstAxer
Автор

great tutoriel u gonna be famous one day ;)

flyoyxv
Автор

My first time learning Interia. Thanks for awesome overview.
More of Laravel, React, Interia projects please.

for conditional in PizzaStatus, jsx,
these Tailwind classes "first:rounded-l-full last:border-r-0 last:rounded-r-full"
can replace two conditions below:

if (index === 0) {
baseClasses += " rounded-l-full";
}

if (index === statuses.length - 1) {
baseClasses = baseClasses.replace("border-r-2", "rounded-r-full");
}

thethmuucodes
Автор

Great video!
The props in the Table component are added by you? I couldn't find it on Flowbite.

neon-gitb