Kingo ( If anyone visiting the comments to make a choice for watching the video, Watch it without thinking ) plus the power point helped a lot in understanding the MVC map. Thank you for the amazing production.
This is the assignment in written I want to create books version using laravel and php code on Mac if you can do a video on this it’ll be much appreciated please also would need a READEME FILE but in advance thank you for your help it’s due in for tomorrow at 12oclock midnight if you can help a brother out once again thank you
I have downloaded more than 3 tutorial video from different tutors just to have a grasp of laravel intro but couldn't and you just made it more easier for me to understand, you're a good tutor honestly speaking!.
It's incredible! Best Laravel course on TH-cam and have checked about 10 at this moment. What's really amazing is the fact that he touched all the important points in 50 minutes. Not 1 hr., 2hrs or 10hrs. Superb!
This is a quality content for a beginner in Laravel. I myself a MERN developer just was looking for something about Laravel under 60 minutes and this popped up. Very good.
I agree with most comments. I thought I was possibly just a dash too dumb for laravel, I could never really wrap my head around the concept. Thankfully, your tutorial cleared up a lot for me! So thanks a lot!
I am currently studying software development and we are doing Laravel. This tutorial is honestly such a livesaver. first i was very overwhelmed but you explain everything very quickly and clearly. Thank you so much
At around 27:40 of this video, I don't know if they updated Laravel some time after this video was made or what. But, I had to go to the database folder --> migration folder --> the file that contains the words "create_products_table" and I had to comment out the "$table->timestamp();" part and redo the migration using the command "php artisan migrate:reset" and then the command "php artisan migrate". Because if you don't, once you put in the values for the name, qty, price and description, you'll get an error message saying that you don''t have values for 'updated_at' and 'created_at' and Laravel is going to expect these time values BEFORE it puts your values into the mysql database and it won't let you continue or things won't work correctly unless you either go into the above mentioned migration file called create_products_table and comment out the $table->timestamp() part, or put in some actual values for the updated_at and created_at parameters. Remember, this info is for if you get errors after doing everything up to the 27:40 mark. And one more thing, DON'T put a dollar sign ($) when you enter a value for the price on the Product page "price" blank. That is, don't put in $5.10 or $2.50, etc. Just put the numbers as in 5.10 or 2.50, etc. without a dollar sign. Otherwise, your code up to the 27:40 mark of this video may not work correctly either. It took me a while to figure these things out. I hope this helps!
You are the best tutor I have ever met. Your qualities are the same as Edwin Diaz. The curriculum you teach is simple. That makes it easier for me to understand.
Thank you sooooo much for this, You are the best self-paced tutor i have met on youtube, you are calm clear and you move step by step. THANK YOU SOOO MUCH
you are the one who thought us the right way how to work with laravel and laravel documentation. I am strondly satisfied with the method of teaching you use in the video. I am watching your video for the first time but I am really impressed with the simplicity and detailed explanations and diagrams you use in the video. Many thanks for your hard work. Thanks Thanks
I have learned something from you so you have my subscribed Im a native php developer and nowadays laravel is indemmand and hard for me to find job so I have to advance using framework then I found your tutorial it helps me a lot.
Just came across your channel today as I was researching on Laravel. Thank you so much for this excellent tutorial! Everything was really clear and comprehensive. I am even more confident now that I can build my dream projects with Laravel! Thank you again! Will be checking out your Laravel login and registration video as well. 💪
Huge respect to you, brother. I saw many other tutorials before this and was not able to understand as I found that too much content for the starting. This is the best for introduction. Thank you❣
@@Devtamin I'm learning to make some front-end with Vue.js in the laravel project, could you please suggest something or share something? I would be really grateful. ☺
Thank you so much for this Sir, this video tutorial helped me learn the basics and I was able to pass my technical interview where I created a website using this tutorial as a guide.
You have an amazing skill, i was facing some challenges getting started with CRUD in laravel but not i can fully create my web apps without checking the docs. Thank you brother
i am a bit hesitant to watch English tutorials due to language barrier but i haven't found any video of this details. I want to thank you .i am a react developer learning Laravel for my project
Thank you so much for the tutorial. Thanks to you I finally understood how the MVC architecture works (at least in a simplified way). I just subscribed and will definitely watch more of your tutorials!!
Hello, I have watched your tutorials and you're the only one who can explain it easily. I hope you can create a new tutorial about customizing the infos in the registration form in laravel breeze. It'll help me a lot cos I'm stuck TT. Thank you.
Good job @Devtamin , We was follow your amazing easy tutorial step by step and finally it would be done. Great job for my first beginning learn to Laravel. Thank you. (I came from THAILAND. nice to meet you)
@@Devtamin Sir, Actually I have a doubt Is Php is valuable for the upcoming future because when I started to learn php most of them saying it's not a great future so kindly share your thoughts on this!!
At 22:20, why do we need to put @method('post') if the method itself is already "POST" on the form? I read on Chatgpt that we only have to put it when we are doing things like "PUT" or another verb aside "post" and "get" for Laravel to recognize it.
Incredible tutorial, you have a gift. I learned so much, referencing the powerpoint was great for context. Thank you!!! FWIW I also had to play around with commenting out $table->timestamp(); in the create_products_table migration, I think this is from a laravel update. Any other issue I had was from my own typo :P
It turned out to be a very cool video. I even understood everything very well in English. Although I don't know English well yet. I would like another video about the multi-user addition of goods.
hey by 27:46 in your video its showing that data is going to the db but for me its not redirecting to the index page and just refreshing the create page the db is also not taking any data
@@haia-h4h I had the same issue. For some reason my Laravel installation (v11.5.0) was redirecting to the create a product page with blank form fields. I used his create.blade.php view and discovered the default Laravel error page wasn't being served up and just redirecting to the "create a product" page. Having the errors output in the create.blade.php template showed what validation errors I was running into. If you add this above your create a product form tag, you should see the error(s):
@if($errors->any())
@foreach($errors->all() as $error) {{$error}} @endforeach
Probably the only tutor I know who showed us how to extensively use the laravel documentation. Thanks so much
You're welcome
Kingo ( If anyone visiting the comments to make a choice for watching the video, Watch it without thinking ) plus the power point helped a lot in understanding the MVC map. Thank you for the amazing production.
I'm happy to help
Please do it’s for an assignment it I was to give you the assignment any chance you can do a video tutorial on it
This is the assignment in written I want to create books version using laravel and php code on Mac if you can do a video on this it’ll be much appreciated please also would need a READEME FILE but in advance thank you for your help it’s due in for tomorrow at 12oclock midnight if you can help a brother out once again thank you
Please if you do attempt to do this please reply back to me ASAP
You are one of the few tutors that actually responds to your users comments. Excellent.
Thank you for a comment
I have downloaded more than 3 tutorial video from different tutors just to have a grasp of laravel intro but couldn't and you just made it more easier for me to understand, you're a good tutor honestly speaking!.
It's incredible! Best Laravel course on TH-cam and have checked about 10 at this moment. What's really amazing is the fact that he touched all the important points in 50 minutes. Not 1 hr., 2hrs or 10hrs. Superb!
Thank you for a comment
Great tutorial you explain it all on easiest way to understand
I will give it 10/10, post more tutorial like this, good job and thank you!
Thanks, will do!
My guy you are the real tutor. Viva! You explained to me what others have been beating about the bush in less than an hour. God bless you.
I appreciate that!
One of the few courses I've found where they actually explain what everything means and how it works. Thank you bud!
You're welcome
This is a quality content for a beginner in Laravel. I myself a MERN developer just was looking for something about Laravel under 60 minutes and this popped up. Very good.
I agree with most comments. I thought I was possibly just a dash too dumb for laravel, I could never really wrap my head around the concept. Thankfully, your tutorial cleared up a lot for me! So thanks a lot!
No problem
I am currently studying software development and we are doing Laravel. This tutorial is honestly such a livesaver. first i was very overwhelmed but you explain everything very quickly and clearly. Thank you so much
Glad it helped!
At around 27:40 of this video, I don't know if they updated Laravel some time after this video was made or what. But, I had to go to the database folder --> migration folder --> the file that contains the words "create_products_table" and I had to comment out the "$table->timestamp();" part and redo the migration using the command "php artisan migrate:reset" and then the command "php artisan migrate". Because if you don't, once you put in the values for the name, qty, price and description, you'll get an error message saying that you don''t have values for 'updated_at' and 'created_at' and Laravel is going to expect these time values BEFORE it puts your values into the mysql database and it won't let you continue or things won't work correctly unless you either go into the above mentioned migration file called create_products_table and comment out the $table->timestamp() part, or put in some actual values for the updated_at and created_at parameters. Remember, this info is for if you get errors after doing everything up to the 27:40 mark.
And one more thing, DON'T put a dollar sign ($) when you enter a value for the price on the Product page "price" blank. That is, don't put in $5.10 or $2.50, etc. Just put the numbers as in 5.10 or 2.50, etc. without a dollar sign. Otherwise, your code up to the 27:40 mark of this video may not work correctly either. It took me a while to figure these things out. I hope this helps!
Thank you for sharing
i did that and still didnt work..
I wish this video existed while I was having my first go at this assignment. You've made everything make sense and I'll nail it on attempt number two.
your tutorial is not boring and tiring to follow. Thank you !
I appreciate your kind words!
You are the best tutor I have ever met. Your qualities are the same as Edwin Diaz. The curriculum you teach is simple. That makes it easier for me to understand.
I appreciate it
Thank you sooooo much for this, You are the best self-paced tutor i have met on youtube, you are calm clear and you move step by step. THANK YOU SOOO MUCH
You're welcome. Please, subscribe
you are the one who thought us the right way how to work with laravel and laravel documentation. I am strondly satisfied with the method of teaching you use in the video. I am watching your video for the first time but I am really impressed with the simplicity and detailed explanations and diagrams you use in the video. Many thanks for your hard work. Thanks Thanks
Glad it was helpful!
The lesson is so clear. This makes it easy for me who previously thought Laravel was difficult to learn.
You're welcome
I was looking a lot of tutorials in Laravel and found this simple and easy to understand how Laravel works. Now I'm hype to create a Laravel project.😎
You're very welcome!
One of the best Laravel tutorials I've watched.
I appreciate your comment
I watched your node tuts bro, and now laravel? bruhhh, another legend is born!
I appreciate your comment.
I subscribe because your approach to teaching is clear and easy to understand. Thank you
Thank you for a comment
I have learned something from you so you have my subscribed Im a native php developer and nowadays laravel is indemmand and hard for me to find job so I have to advance using framework then I found your tutorial it helps me a lot.
Great to hear!
Great tutor! I have shared the link to those in need of this quick guide less than an hour. Amazing! Keep up the good sharing.
Awesome, thank you!
Really great video. Concise. No time lost with css. Thank you very much!
Glad you liked it!
Been battling with laravel for months but this video is my answer to laravel. Thank you bro
Thank you for a comment
I dont have idea MVC but I'm happy that I run the CRUD even the error is different and I can locate it Thank you to ChatGPT and this youtube channel.
Glad to hear that
Thanks for making this clear video. I was confused if i know laravel. Turned out i know so many things and yes i got some of my concepts clear.
You're welcome
mine loads super slow (like it never stop loading) every time i attempt to add data,, help@@Devtamin
Just came across your channel today as I was researching on Laravel. Thank you so much for this excellent tutorial! Everything was really clear and comprehensive. I am even more confident now that I can build my dream projects with Laravel! Thank you again! Will be checking out your Laravel login and registration video as well. 💪
Great to hear!
This is very helpful for me. I'm new to laravel and this is basically everything to me.
Thank you for the comment
Huge respect to you, brother. I saw many other tutorials before this and was not able to understand as I found that too much content for the starting.
This is the best for introduction.
Thank you❣
Glad to hear that
@@Devtamin I'm learning to make some front-end with Vue.js in the laravel project, could you please suggest something or share something?
I would be really grateful. ☺
Thank you so much bro, I finished my page with no problems thus far
No problem 👍
your video its so helpful for me you explain very well about the flow MVC, and now i understand a lot how to use laravel basic crud
thank you men.
I appreciate your comment. Pls, subscribe
Thank you so much for this Sir, this video tutorial helped me learn the basics and I was able to pass my technical interview where I created a website using this tutorial as a guide.
Great to hear it! congratulation with your new position
You have an amazing skill, i was facing some challenges getting started with CRUD in laravel but not i can fully create my web apps without checking the docs. Thank you brother
Glad I could help!
SUPER THANKFUL THAT I'VE FOUND THIS VIDEO
YEAH ME TOO
This video is so helpful, 10/10 edging
🥴🥴🥴🥴🥴
indeed, this is so fascinating it helps me to understand more about laravel
You're welcome. Thank you for all of your comments
thank you so much for this tutorial! this is my first time learning laravel.
You're very welcome!
Exactly what I was looking for, perfect video. Simple and to the point.
Great to hear!
This is what I was looking for. Thank you very much. You have simplified my journey towards learning Laravel. Be blessed my friend.
NIce man, you kept it short no BS, and explained very well ,Much appreciated
Glad you liked it!
This video helped me create a proper project on my own, even though i never used laravel before. Thank you so much.
Great to hear!
this video is very helpful for me studying the laravel framework and you explain it in a very simple way that we can understand easily. Thank you!
Glad it was helpful!
This tutorial has really helped me to understand Laravel extensively. Thank you soooo much
Great to hear!
This really helps!!! A big thanks to you sir. You are wonderful instructor! May God bless you for uploading videos like this. Thank you.
i am a bit hesitant to watch English tutorials due to language barrier but i haven't found any video of this details. I want to thank you .i am a react developer learning Laravel for my project
You're welcome
Excellent video. You made things so simple and crystal clear. Enjoyed.
Thank you for the comment
Thank you so much for the tutorial. Thanks to you I finally understood how the MVC architecture works (at least in a simplified way). I just subscribed and will definitely watch more of your tutorials!!
Glad it helped!
Man you are a exelent teacher! you could focus only in laravel, this is one of the best tutorial beginer friendly i ever seen in laravel!
Wow, thanks!
this is the best video on youtube for laravel fr helped me a ton thank u
Glad it helped!
Amazing content dude, great explanation and pronunciation. Keep it up 👍
Thanks, will do!
You're a very good teacher, keep it up brada
Thank you, I will
Hello, I have watched your tutorials and you're the only one who can explain it easily. I hope you can create a new tutorial about customizing the infos in the registration form in laravel breeze. It'll help me a lot cos I'm stuck TT. Thank you.
Yes, soon
@@Devtamin omg thank you so much for noticing me 🥹
I hope that you could continue, your explanation is amazing
Thank you, I will
Nice one bro, I have been deb-ling with crud but your concise tutorial made it easier. Thank you so much
You're welcome. Pls, subscribe
Good job @Devtamin , We was follow your amazing easy tutorial step by step and finally it would be done. Great job for my first beginning learn to Laravel. Thank you. (I came from THAILAND. nice to meet you)
your video makes me clear now thank you so much
You're welcome
Great tutorial that helped me get going with Laravel. Thanks a lot for this.
You're very welcome!
Thank You So much for the Wonderful lesson !!
You're welcome
@@Devtamin Sir, Actually I have a doubt Is Php is valuable for the upcoming future because when I started to learn php most of them saying it's not a great future so kindly share your thoughts on this!!
Hello
A very well documented material, congratulations!!!
It helped me a lot in creating a Laravel CRUD project.
Thank you
I appreciate your comment
Your pacing and teaching style is perfect! Many thanks for this amazing tutorial
My pleasure!
At 22:20, why do we need to put @method('post') if the method itself is already "POST" on the form? I read on Chatgpt that we only have to put it when we are doing things like "PUT" or another verb aside "post" and "get" for Laravel to recognize it.
you are a lifesaver. great work and keep it up.
Glad to help
Thank you. It's make me clear in Laravel CRUD.
You're welcome. Don't forget to subscribe
Very good tutorial for a beginner like me, thanks a lot.
Glad it was helpful!
This is very clearly explained. Great video.
Thank you
well simplified. kudos
Glad you liked it
Hey, thank you so much for this tutorial. It helped me with some concepts of Laravel!
Great to hear!
Thank you, this tutorial helped me a lot.
Glad to hear that!
Great Effort . Thank you so much sir!
Most welcome!
thank you very much for the tutorai. It was really helpful and understandable.
You are welcome!
Incredible tutorial, you have a gift. I learned so much, referencing the powerpoint was great for context. Thank you!!!
FWIW I also had to play around with commenting out $table->timestamp(); in the create_products_table migration, I think this is from a laravel update. Any other issue I had was from my own typo :P
Thank you for a comment
Amazing video, you're a great teacher. Thank you so much!
You're very welcome!
Thanks a lot...
I have been struggling not knowing where to start, now I did everything in the tutorial and understood it
Keep it up
You are welcome 😊
It turned out to be a very cool video. I even understood everything very well in English. Although I don't know English well yet. I would like another video about the multi-user addition of goods.
Glad you enjoyed it!
hats off..simple and insightful...u helped to gain my confidence on laravel
Nice comment
Make more Laravel 10 beginner's project...
Your project explanation is incredible 🎉
Sure
Best way to use the documentation 🎉❤
Thank you
it's really helpful, Thank You
Glad it was helpful!
one of the best tuto i have ever seen ty
Thank u so much dis helped me a lot in understanding this framework
You're very welcome!
u made it look so simple. thanks dood
i had watched your nodejs video your explainations are simple and awesome i love your tuts waiting for more 💓
I highly appreciate your comment. Please, subscribe
You make excellent tutorials. Keep up the great work. These are so good I would pay on patreon.
Much appreciated!
it is so helpful. I learn the basic understanding on Laravel from this amazing tutorial.
cool and clear.
thanks a lot from Ethiopia
Glad it was helpful!
was super quick and really helpfull!!!!
So glad!
Sir your explanation idea so good thank you sir
You are most welcome
Good Video for Beginners! Thank You so much!
You're welcome!
Simple. Excellent !
Thanks so much !
That was so helpful, thank you so much!!
You're welcome
Very good your video, I understand very little English, but you can make me understand, thank you!!!!
Glad I could help!
hey by 27:46 in your video its showing that data is going to the db but for me its not redirecting to the index page and just refreshing the create page the db is also not taking any data
Same here, did you solve it already,?
@@haia-h4h I had the same issue. For some reason my Laravel installation (v11.5.0) was redirecting to the create a product page with blank form fields. I used his create.blade.php view and discovered the default Laravel error page wasn't being served up and just redirecting to the "create a product" page. Having the errors output in the create.blade.php template showed what validation errors I was running into.
If you add this above your create a product form tag, you should see the error(s):
@if($errors->any())
@foreach($errors->all() as $error)
{{$error}}
@endforeach
@endif
@@haia-h4h same here. Did you find a way out?
same issue. Not redirecting and inserting to db. Have you find a solution?
Thank you for this tutorial, easy to understand and learn. Keep uploading more tutorial like this, we can learn a lot from you 👍
More to come!
Thank You So Much For The Tutorial!!
You're welcome
Excellent video, many thanks!
Great detailed explanations with examples.
Glad you like it
Great tutorial! Keep it up!
Thanks, will do!
Loved this tutorial
You're welcome
I love this tutorial, Thank you, sir.
You're very welcome!
Superb ! Thank you very much. Hope you will upload more tutorials in future
I will try my best
Thank you so much, it was so helpful 😊
You're so welcome!