@@TheCodeholic I genuinely appreciate what you do, the content that you put on this channel is priceless and it helped me a lot to practice along and make my own projects. I will use what I've got to put on my portfolio along with my other projects online.
I have been working as a web developer for 12 years, but I was not familiar with using symbolic links. After watching this video, I now understand how they work. Thank you for the explanation.
Thank you for this tutorial! It was really helpful! I have a little note about hooks on React though: they should not be conditionally called. At 2:19:52 you add a useEffect inside of an if, this can lead to all sorts of problems. You have two options there: 1 - move the hook to the top level component and have the condition inside of it 2 - leave the if statement at the top level and move the hook to another component
i'm not lie, this is the "first ever" video that introduce me how to use "debugger" line on react, watched the whole video though i skip few part, and pretty good explanation, you're just like the other youtuber that i love to watch (i'm trying to keep away these tutorial hell, but you won me on this haha) and now i'm finish mine and make this as my starter project, might add some additional library like SweetAlert and fontawesome later, soo it will be reusable for my future project. Keep making videos, I hope your hard work and persistence pays off!!
FYI, in createBrowserRouter, PHPstorm is showing "routes:" as a kind of helper text that is not really in the code. I'm using VScode which does not do that and was throwing me off for a while. So if you're getting an error related to createBrowserRouter make sure you didn't type "routes:" in before the bracket. Nice video!
Thank you for taking the time to cerate this video. Your explanations were really helpful and easy to follow which made it feel less intimidating for beginners like me. :D Your passion for web development is infectious. Looking forward to watching more of your videos in the future! ;) Keep up the good work!
I am very happy when I see a new video in the channel or in the notifications, although I do not have the money to participate in the paid course, but I am very grateful for the effort that you make because you put us on the right path and teach us a lot. When I am able to participate in the paid course, I will participate even if I do not need it to express my thanks to you With love, your student Mahjoub Mohamed from Sudan 😊😊😊
If somebody had an error to logout, maybe the changes on api.php (1:47:33) were not updated. You just need to run "php artisan route:cache" on the terminal.
I decide to create a separate folder for the frontend, and althought I spent a lot of time trying to config and understand Cors, it was really fun, thank you for this amazing tutorial! Also, i still don't know why, but i had to put "use Laravel\Sanctum\HasApiTokens;" in the User Model, to fix some errors i was having with the signup part
i have a question here please if i want the first page that displayed it's the home page not login the login displayed whene user want to get order for example any help for this issu please
Thank you really glad no one better than this channel fo web development ❤❤ love your way of presentation Could you please make a video for pagination and filter query please😊😊
Hi Zura, Thanks for the amazing and useful tutorial. I practice along with watching the video. I got exact output without any difficulties. Could you please upload video for adding pagination buttons. I stuck in how to add these links.
could you explain more about why you're using '_setToken' as the setter and have another function called 'setToken' that calls it? (in 00:38:00) I'm not sure if "I'd have an error, basically" is an acceptable explanation when learning something..
OK. I watched that section again. So we have two functions with similar purpose and one is calling a second. Obviously functioin names must be unique and you can not name two functions the same name. You should name one of them something different. Instead of _setToken you can all call it setMyToken, but the main thing is that it will definitely throw an error if you try to declare a function with the same using which already exists a function.
Thanks you so much brother, I have actually followed your steps and created a mini app that works. This video has been the most practical and comprehensive. You deserve a 🍺. And I am getting you one!!! Just an ask, can you make a video on how we could implement role based authorization using react
Thanks a lot. I probably will not be able to make that video in close future, what I might do is building React Laravel admin panel which might include that part as well.
Nice course. Thanks. But still using XAMPP? I switched to LARAGON 6 years ago and never looked back. Works and has all tools out of the box. And poratable as hell. Just give it a try.
@TheCodeholic nice and great tutorial, Suggestion : using password validation for laravel, at 1:25:21 / signup Password class must be included use Illuminate\Validation\Rules\Password; in signup request
Hello Zura! thanks for the lesson, it's very good. I'm following this step by step and now I'm at the last part of the custom crud: "Editing and adding new ones is not work. Only deletion works correctly.” can you help me?
He is terrific terrible in showing the imports. You have to import the useStateContext from ContextProvider import { useStateContext } from "../context/ContextProvider";
Hello Deployment to Laravel version 11 application hosting does not work. The configuration is different. I cannot deploy Laravel 11. Have you tried on your side? Did you find a solution ? THANKS
Your video @1:26:00, you have used a class Password:: but never called/mentioned that class at the top of SignupRequest.php . That is giving me an error >> {message: "Class "App\Http\Requests\Password" not found", exception: "Error",…} when I clicked Sign Up button. Where is that class came from? Or I had to remove completely of Password::min(8)->letters()->symbols() to make it work.
@@andrevzo84 Thanks! I was receiving the same error and fixed it when I changed from "Illuminate\Support\Facades\Password" to "Illuminate\Validation\Rules\Password".
🚀 Get Shared Hosting for only $2.99: hostinger.com/thecodeholic, and use coupon code "THECODEHOLIC" for EXTRA 10% OFF 🚀
For one year ?
$2.99 per month if you get it for one year, 2 years or 4 years. If you use the coupon code THECODEHOLIC you will get extra 10% off.
Just got the Premium Web Hosting plan using your coupon code.
That's great. You are also supporting the channel.
@@TheCodeholic I genuinely appreciate what you do, the content that you put on this channel is priceless and it helped me a lot to practice along and make my own projects. I will use what I've got to put on my portfolio along with my other projects online.
I have been working as a web developer for 12 years, but I was not familiar with using symbolic links. After watching this video, I now understand how they work. Thank you for the explanation.
Thank you for this tutorial! It was really helpful!
I have a little note about hooks on React though: they should not be conditionally called. At 2:19:52 you add a useEffect inside of an if, this can lead to all sorts of problems.
You have two options there:
1 - move the hook to the top level component and have the condition inside of it
2 - leave the if statement at the top level and move the hook to another component
yes hook should not be in if
Better late than never. Thanks for your commens and advice
i'm not lie, this is the "first ever" video that introduce me how to use "debugger" line on react, watched the whole video though i skip few part, and pretty good explanation, you're just like the other youtuber that i love to watch (i'm trying to keep away these tutorial hell, but you won me on this haha) and now i'm finish mine and make this as my starter project, might add some additional library like SweetAlert and fontawesome later, soo it will be reusable for my future project.
Keep making videos, I hope your hard work and persistence pays off!!
Thanks a lot my friend.
This comment will make my day
FYI, in createBrowserRouter, PHPstorm is showing "routes:" as a kind of helper text that is not really in the code. I'm using VScode which does not do that and was throwing me off for a while. So if you're getting an error related to createBrowserRouter make sure you didn't type "routes:" in before the bracket. Nice video!
thank u i needed that !
You are super teacher! Your English pronounciation is great! Thanks a lot!
You're one of the top teacher and developer in the earth,
Please continue, I wish you all the best.
Thanks a lot my friend
I've been waiting for this all my life. So glad it's finally here. Can't wait to learn
You make this planet a better place. Thanks!
One good thing at a time 🙂
Beautiful images behind you!
Szarbel Makhlouf?
Didn't completed full video yet. Still commenting because deserve it brother! May the Almighty bless you. Your video is too clean. Easy to learn.
Thank you for taking the time to cerate this video. Your explanations were really helpful and easy to follow which made it feel less intimidating for beginners like me. :D Your passion for web development is infectious. Looking forward to watching more of your videos in the future! ;) Keep up the good work!
Thank you for such a nice comment
I am very happy when I see a new video in the channel or in the notifications, although I do not have the money to participate in the paid course, but I am very grateful for the effort that you make because you put us on the right path and teach us a lot. When I am able to participate in the paid course, I will participate even if I do not need it to express my thanks to you
With love, your student Mahjoub Mohamed from Sudan 😊😊😊
If somebody had an error to logout, maybe the changes on api.php (1:47:33) were not updated. You just need to run "php artisan route:cache" on the terminal.
Thanks! It was driving me crazy
Thank you, this video is amazing, your explanation is very easy to follow
To avoid a warning when creating a user, use User::query()->create() instead of User::create().
What's the difference??
@@Sarfrozkhan If you use PHPstorm, it will issue a warning without a query().
Thank you brother
seems like a laravel base channel, ill sub
It was awesome course for laravel with react.js and with all that deployment tips ). Will be waiting for more content
This is AMAZING!!! Greetings from colombia
Video completed from 0 to 100! Everything perfect. Thank you very much!
This is one of the best tutorials I've ever taken, Thank you very much. Would you consider doing a vidoe with a focues on debugging, maybe, please??
Thanks. Not sure. I have some other video topic plans in close future
you're a genius of well structured and ordered project, never seen something like that before
do you have some course about react query with jwt auth?
It was super awesome video which is really good for beginners please make more videos like this we literally love your lectures
I decide to create a separate folder for the frontend, and althought I spent a lot of time trying to config and understand Cors, it was really fun, thank you for this amazing tutorial! Also, i still don't know why, but i had to put "use Laravel\Sanctum\HasApiTokens;" in the User Model, to fix some errors i was having with the signup part
thanks for the clear video! It's really helpful. The pace is also really good, not too slow, you explain things shortly but make it really clear.
Glad you liked it!
What an amazing tutorial, thanks a lot brother! really helped closing some gaps with my project.
i have a question here please if i want the first page that displayed it's the home page not login the login displayed whene user want to get order for example any help for this issu please
Thank you so much… I'm going to binge-watch this
Hey Zura, gerçekten hoş bir tutorial idi. Basit gibi görünen ama eğlenceli bir geliştirme süreci oldu. Teşekkürler
🙂
I wish I could subscribe twice! Amazing tutorial.
Keep making this type of projects
Thank you really glad no one better than this channel fo web development
❤❤ love your way of presentation
Could you please make a video for pagination and filter query please😊😊
Bro! Love the icons! Subscribing for fellow Orthodox coder!
Thanks my friend
Great work Codeholic ❤🔥🔥
Thanks
As usual amazing job !!
Thanks for this ultimate journey ! I've learned a lot, and I hope to share some with work partners ! Take care, and have happy year celebrations 🍾
Good sir I'm waiting for your every single video. I'm from Bangladesh 🇧🇩
Thanks man
Thanks for this tutorial, i understand many things about login and route control :)
Definitely a gem. Thank you!
just getting with laravel and your video😌 i will be back when i am done
thank for this☺
1:18:00 bug, 419 error, link between front and back work but nothing happen, i think we have to add csrf token to out sign Up form
Very good video. Thanks for sharing this with us! :)
More projects like this one sir >>> Thank you
Again, great content. Thanks
Thank you for this awesome course
thank you very much for this amazing course.
Its a wonderful and valuable presentation. Thank you very much.
Thank you a lot i will use this structure in my school project
thank you for the great content, I am using your videos to create a blog app for uni and its really helpful, god bless you
Blog app?? That's great... my next video is about building blog with Laravel
Thank you for your course😍😍
Thanks for sharing this great tutorial !
this tutorial is amazing :D
Could have stored the token inside a cookie though 😊
In all these, I was looking for where you connected to the database with mysql.
I hope you found it
@@TheCodeholic yeah, I did. Sqlite.😁
Great video, thanks!
The perfect tuto!!!! (from Gabon)
Thanks for tutorial its easy to understand and code along
i subscribe, because of laravel contents
You are the best, I'm so grateful, thank you 😍
Welcome
Thanks for a very good video tutorial!
Very useful! Thanks a lot!
Glad it was helpful!
That's amazing tutorial. Hoping and looking forward to have more this, maybe you can have Laravel and React Query, combination.
Thanks for the video.✌️
Thanks for your great efforts. May you make a laravel with angular e-commerce website.
This is awesome!
Amazing tutorial! Thank you so much for sharing your knowledge! 🤍
friend, your tutorial helped me a lot, maybe you have an update in which you include roles
your background orthodox icons wow
❤✝
🙏❤️
Thanks For This Amazing Video
Awesome ❤❤❤❤
Thank you so much it is big help sepecially uploading to server..
Great tut thanks a lot!
Hi Zura, Thanks for the amazing and useful tutorial. I practice along with watching the video. I got exact output without any difficulties. Could you please upload video for adding pagination buttons. I stuck in how to add these links.
could you explain more about why you're using '_setToken' as the setter and have another function called 'setToken' that calls it? (in 00:38:00) I'm not sure if "I'd have an error, basically" is an acceptable explanation when learning something..
OK. I watched that section again. So we have two functions with similar purpose and one is calling a second.
Obviously functioin names must be unique and you can not name two functions the same name.
You should name one of them something different. Instead of _setToken you can all call it setMyToken, but the main thing is that it will definitely throw an error if you try to declare a function with the same using which already exists a function.
thank you gentlemen
I like it. Perfect a combinatie. laravel and react. 🤟
A very very thanks for uploading this content this helped me alot
Glad to hear it!
Thanks you so much brother, I have actually followed your steps and created a mini app that works. This video has been the most practical and comprehensive.
You deserve a 🍺.
And I am getting you one!!!
Just an ask, can you make a video on how we could implement role based authorization using react
Thanks a lot.
I probably will not be able to make that video in close future, what I might do is building React Laravel admin panel which might include that part as well.
@@TheCodeholicthat would be very helpful indeed. As it stands every user that registers can see every other users data which is not that practical
Nice course. Thanks. But still using XAMPP? I switched to LARAGON 6 years ago and never looked back. Works and has all tools out of the box. And poratable as hell. Just give it a try.
Thank you so much master!. One Question: How implements the pagination? please😬
great video!
2:02:17 it should be $this->user->id
Двойной профит, и урок замечательный, и английский прокачиваешь
да это так, siuuuu
thank u bro, it's awesome
Please make laravel react ecommerce like u did in laravel vue course
@TheCodeholic nice and great tutorial, Suggestion : using password validation for laravel, at 1:25:21 / signup Password class must be included use Illuminate\Validation\Rules\Password; in signup request
thanks, very helpful
very good tuts
Hello Zura! thanks for the lesson, it's very good. I'm following this step by step and now I'm at the last part of the custom crud: "Editing and adding new ones is not work. Only deletion works correctly.” can you help me?
Awesome, any plans for react native with laravel api, I know this can turn into the best channel forever ❤😅🎉
i have error in signup.jsx
useState is not defined around 1:30:01 and up
Got a simillar error useStateContext is not defined
He is terrific terrible in showing the imports. You have to import the useStateContext from ContextProvider import { useStateContext } from "../context/ContextProvider";
Thank you so much sir
Thank you a lot!
Hello
Deployment to Laravel version 11 application hosting does not work. The configuration is different. I cannot deploy Laravel 11. Have you tried on your side? Did you find a solution ? THANKS
Thank you for helping us, can you please do Next.js with laravel any simple project
Your video @1:26:00, you have used a class Password:: but never called/mentioned that class at the top of SignupRequest.php . That is giving me an error >> {message: "Class "App\Http\Requests\Password" not found", exception: "Error",…} when I clicked Sign Up button. Where is that class came from? Or I had to remove completely of Password::min(8)->letters()->symbols() to make it work.
You have to use Illuminate\Validation\Rules\Password
@@andrevzo84 Thanks! I was receiving the same error and fixed it when I changed from "Illuminate\Support\Facades\Password" to "Illuminate\Validation\Rules\Password".
Saved the day
thank you for a good explain
Thank you so much for this vide
ქართულადაც გვინდა მეგობარო
thank you 🤩
You’re welcome 😊
Суперская связка, такие редко попадаются в открытом доступе, в основном в приватках и могут подкинуть прям друзья!
Thank you for the tutorials on INERTIA. Can we have a video on the deployment of INERTIA on Windows server? Please