theres old course by Brad on Eduonix, but is about Laravel 6 if I recall good. However I honestly hope, to see up to date course on Laravel by Brad on Udemy, and maybe advanced edition on the OOP PHP MVC Course as well, please :)
Omg, Thank you so much Brad. Your Previous Laravel video (lsapp) was my first ever laravel course in my life and it changed a lot in my life. Now i'm working as a Laravel Backend developer in a reputed company. Thank you so much again. You have been a role model in my life ❤️
I got an interview for a API developer job next week, the company's stack is Laravel. This is the most useful video I have seen in a long time. Thank you so much
I quit watching your videos online, now i only give it a like then download it, so that i can go back an forth, and get the whole value. Just finshed laravel crash course yesterday, and i really appreciate what you are giving us *for free*, brad is truly a valuable resource.
You and Mosh are the greatest code Instructors on UA-cam who make very difficult and blurry things very simple and crystal clear. Love the way you teach. You aren't wasting a single minute in unrelated things. Whenever you bring something, you always come up with something solid.
Awesome content and I think it is very likeable that you don't try to cover up or cut out any mistakes / typos etc. because that keeps it so authentic. Thanks for the effort man, much appreciated 👍
If possible please make a react front end for Laravel. This is a nice combination that is not seen often. Naturally, thank you for for all the videos you provide. They are immense help.
Agreed! Front-end react + redux (with TypeScript offcourse) and back-end: Laravel and whatever db. By the way thx a lot Brad! Your content is life changer for me.
Seriously the quality of your content is beyond insane. I have not gotten this level of education during my whole time on the university. How the possibility of learning something new has improved within the last 15 years... It always blows my mind.
Great teacher! You go straight to the point, you explain in a easy way to understand, you take your time to explain the details of what you are doing. Keep up the good work! Edit: I found the video, and thought this was your channel. I don't know if you have a channel of your own already, explaining code, laravel or other stuff, but you really should.
After learning most of the basics of Laravel, I have recently started thinking about APIs (which is not so much content indeed). So, it was right to time with the right context for me. Thank you, Brad!
Just a little tip! In the video Brad uses the resource to handle CRUD apis in both Controller generation and Routing but there is actually a better method: using the apiResource instead of resource will not generate the routes and methods for the view parts which in API case are pretty uselless :)
you can use the exists instead of the first method. This is how you avoid unnecessary inquiries. The request is terminated immediately if not found. Is a good tutorial
Give this guy a medal! Thanks a lot Brad. Your videos are incredibly helpful. I just wish I could ask you some questions as I watch. Thankfully, you explain things well enough for me to just pause the vid, go research and come back with the knowledge I need. Keep up the good work man!
I do agree with others, Laravel tutorials are really needed. Thank you very much Brad.... You are helping us in a way that is not possible to say it by words. You are a HERO in our hearts BRAD. I LOVE YOUR WORK
bro this is so insane , i started watching ur 2019 or 2018 laravel series , im on part 9 right now i was willing to watch some other tutoriels after i was finished with yours and now boom u put a laravel video out of nowhere , thank you so much for your time
Thank you!!!!! Finally!!!!!!!!! I stopped for months because I got pissed off. Not enough tutorial on UA-cam for Laravel. Especially SPA with Sanctum. Now I can move forward again. Thanks Brad!
I was searching to set the unique token authentication for 6 months now I found Brads video. That was really helpful. I request you to make a quick crash course on Laravel 8. I saw your previous series but it's not updated. So, Hopefully We'll get the latest laravel tutorial series from you. Thanks for everything you give us.
"I might forget to use semicolon in one place or the other because I don't used it anymore in javascript" He actually never forget one throughout the tutorial. Thanks brads 😀
Thank you very much, Brad, for this video and for others such as javascript, react and react-native. Those have been the ones I've watched and I really like your teaching style and the pacing of the videos. Thanks to you I might actually pass my internship yet :D
you saved my life, this is exactly what i need for my software engineering final exam project ♥ i couldn't figure out how to do custom auth + SPA/API in laravel before i watched this. THANK YOU SO MUCH!
Thank you so much Brad, you are always amazing!. just a side note, we can use Route::apiResource instead of Route::resource in the route. also if you type hint the parameters in the update/delete methods with the model class, Eloquent will automatically fetch the object for you ;)
He is not using resource class I think that's why he didn't use Route::apiResource(), I guess that's the reason. I always use resource class and then use apiResource in all my route resources in api.php file.
Thank you so much for your content. You have been such a great inspiration for me. I still remember the first video I saw from you on how to deploy a simple node.js app. Now, 3 dev jobs and on cs degree later, I still come back to your channel for tips and tricks! :) keep on!
Really Great Video had no idea at all about php and Laravel but thanks to you I feel little more safe around this language now and you're the first guy I really enjoyed listening to 1h without wanting to stop the video thank you very very much. Keep up the good work you're doing a great job
Eres realmente muy bueno, te felicito, preciso y puntual, sin duda alguna debería haber mas tutoriales como los tuyos. Además lo explicas de una manera muy buena para poder despegar un proyecto base, saludos desde México.
Great thanks, bro! I have been struggling with Sanctum for more than 6 hours. Couldn’t sent correct request to protected route. There is no nothing about you need put token in authorization in documentation and other videos. Great respect!
This tutorial is of excellent quality and has guided a fellow student and myself on our first steps with laravel's authentication. Thank you very much.
Thank you Brad. I like laravel. The truth is I have a project ongoing and this helps me a lot (as always your tuts ar short and point on. No side chit chat) .
hey, brad loves your work and your tutorials help me a lot in my development carrier. please do a full website development course using laravel and please let us know when you are planning to live your nextjs course
For anyone having the same issue, at 45:40 vscode told me that tokens() didn't exist. I changed the code from: auth()->user()->tokens()->delete(); To: $request->user()->tokens()->delete(); And that fixed it.
Thank you very much .. You are a great teacher and your way of explaining is amazing. I have been researching this topic for more than 4 months, and I only understood it through you. Thank you very much 🤩
Brad, at around the 11:00 mark, you typed in the Product model to be imported. You can actually download an extension called 'Namespace resolver' or something like that, and you can code with whatever classes you want, then right-click on the class, select "Import Class" from the context menu, and it will automatically do what you did by hand. Thank you so much. I wish we could have statistics of how many people you help get better jobs and improve our quality of life. God bless you, or Tesla bless you if you're an atheist.
For Laravel 9 users: If the auth()->tokens()->delete(); provides an error then try using : $accessToken = $request->bearerToken(); $token = PersonalAccessToken::findToken($accessToken); $token->delete();
We all here agree that we need more tuts for Laravel from you Brad.
agree
Hajde katundar e loqk,
Cmon Raçja 😄
Agree
Agreed
Agreeeee !!!!
We really need more tutorials about Laravel !
Thank you Brad
Agreed!
theres old course by Brad on Eduonix, but is about Laravel 6 if I recall good. However I honestly hope, to see up to date course on Laravel by Brad on Udemy, and maybe advanced edition on the OOP PHP MVC Course as well, please :)
Agreed!
His js is also good if not better than his php
I got some
Omg, Thank you so much Brad. Your Previous Laravel video (lsapp) was my first ever laravel course in my life and it changed a lot in my life. Now i'm working as a Laravel Backend developer in a reputed company. Thank you so much again. You have been a role model in my life ❤️
what is his full name please, he did not even mention it at the beginning of the tutorial
I got an interview for a API developer job next week, the company's stack is Laravel. This is the most useful video I have seen in a long time. Thank you so much
did you get the job? if not, I have more work for you and looking for a laravel expert to build an API.
@@Peter-ue4iz I didn't get that job, but I got an offer from another company.
Waiting so long for your own laravel content. Thank you so much 😍
I quit watching your videos online, now i only give it a like then download it, so that i can go back an forth, and get the whole value. Just finshed laravel crash course yesterday, and i really appreciate what you are giving us *for free*, brad is truly a valuable resource.
This is exactly what i wanted😮 and boom I got a Traversy Media video🔥
You must have missed his video on machine learning to predict user demands for video platforms ;)
Same here. I've just finished API on Lumen but it's always good to check Traversy :)
@@wojciechmruk3539 links please
Me too lol
@@MULTICODE That's an internal project for the company :/ I can't share.
finally some laravel stuff !
You and Mosh are the greatest code Instructors on UA-cam who make very difficult and blurry things very simple and crystal clear. Love the way you teach. You aren't wasting a single minute in unrelated things. Whenever you bring something, you always come up with something solid.
Awesome content and I think it is very likeable that you don't try to cover up or cut out any mistakes / typos etc. because that keeps it so authentic. Thanks for the effort man, much appreciated 👍
If possible please make a react front end for Laravel. This is a nice combination that is not seen often.
Naturally, thank you for for all the videos you provide. They are immense help.
Agreed! Front-end react + redux (with TypeScript offcourse) and back-end: Laravel and whatever db.
By the way thx a lot Brad! Your content is life changer for me.
This would be cool
MLR Stack (MongoDB Laravel React)
I got a job as a php/laravel developer after watching your videos. Gudos bro. Love your teaching steps.
Doesn't matter how many channels I go through, in the end Brad's videos are the ones I understand the best. Thank you, great video!
Hands down, the only tutorial that worked out for me. It was laughing so hard towards the end but I learned a lot from this. More power to you Brad!
Seriously the quality of your content is beyond insane. I have not gotten this level of education during my whole time on the university. How the possibility of learning something new has improved within the last 15 years... It always blows my mind.
Oh my, I really love the way you taught this... simple, straight forward, organized and calm. Amazing Thanks Brad !
Awesome tutorial, dude! I went from having never touched Laravel to being confident enough to make an API with authentication.
Great teacher! You go straight to the point, you explain in a easy way to understand, you take your time to explain the details of what you are doing. Keep up the good work!
Edit: I found the video, and thought this was your channel. I don't know if you have a channel of your own already, explaining code, laravel or other stuff, but you really should.
A Laravel tutorial with Microservices Architecture would be greaaaat!!! Thank you!
Just create several apis that split down the domain content
I cannot believe that you record these tutorial in real time and pretty much perfect. Anyone that has tried this knows how impressive that is. Thanks.
After learning most of the basics of Laravel, I have recently started thinking about APIs (which is not so much content indeed). So, it was right to time with the right context for me. Thank you, Brad!
Just a little tip! In the video Brad uses the resource to handle CRUD apis in both Controller generation and Routing but there is actually a better method: using the apiResource instead of resource will not generate the routes and methods for the view parts which in API case are pretty uselless :)
you can use the exists instead of the first method. This is how you avoid unnecessary inquiries. The request is terminated immediately if not found.
Is a good tutorial
I just want to put it out there that today I was tasked with creating a REST API in Laravel. Never done it before. Exquisite timing as usual!
Give this guy a medal! Thanks a lot Brad. Your videos are incredibly helpful. I just wish I could ask you some questions as I watch. Thankfully, you explain things well enough for me to just pause the vid, go research and come back with the knowledge I need. Keep up the good work man!
I do agree with others, Laravel tutorials are really needed.
Thank you very much Brad.... You are helping us in a way that is not possible to say it by words.
You are a HERO in our hearts BRAD.
I LOVE YOUR WORK
Mr Traversy is one of the best teacher, explaining each and every line of code makes learning so much easier. Thanks for such quality content.
Finally! Laravel!! We've been waiting so long!!!!!!!!!!!!! Please , make videos about Laravel more!!!!!!!!!!!!!
I have been thinking about this for a few days now. This guy can read minds. Thanks man
Brad, I always learn something good and new whenever I watch your tutorials in the easiest and simple way. Thanks
bro this is so insane , i started watching ur 2019 or 2018 laravel series , im on part 9 right now i was willing to watch some other tutoriels after i was finished with yours and now boom u put a laravel video out of nowhere , thank you so much for your time
Thanks Brad. I've been a web developer for two years now because of your tutorials. Thanks cheers...
Finally Laravel from you. Need a complete advance course.
Thank you!!!!! Finally!!!!!!!!! I stopped for months because I got pissed off. Not enough tutorial on UA-cam for Laravel. Especially SPA with Sanctum. Now I can move forward again. Thanks Brad!
I was searching to set the unique token authentication for 6 months now I found Brads video. That was really helpful. I request you to make a quick crash course on Laravel 8. I saw your previous series but it's not updated. So, Hopefully We'll get the latest laravel tutorial series from you. Thanks for everything you give us.
Compared to other tutorials, I think this is the only tutorial that is simple and very clear. Thank you so much brad
"I might forget to use semicolon in one place or the other because I don't used it anymore in javascript"
He actually never forget one throughout the tutorial. Thanks brads 😀
This is exactly why I need it right now for my college task.
semang cuk
Finally some laravel content .
Hey Brad why don't you consider making a series to teach laravel in depth .
Thank you very much, Brad, for this video and for others such as javascript, react and react-native. Those have been the ones I've watched and I really like your teaching style and the pacing of the videos. Thanks to you I might actually pass my internship yet :D
I have been waiting for it, since I watched your "10 projects with Laravel back in the days on Eduonix". Thanks
Respect from Pakistan 🇵🇰
I do remember when I started Laravel, watching your Crash Course back in 2017
It was nice as ever, thank.
At 32:17 we doesn't need that middleware, that is for SPA and stateful requests , I think
I learned more in an hour than a month at my actual school. Thank you Brad.
you saved my life, this is exactly what i need for my software engineering final exam project ♥
i couldn't figure out how to do custom auth + SPA/API in laravel before i watched this.
THANK YOU SO MUCH!
This is ALL the video I NEEDED to get started! I owe you a lot, Brad!!
this is one of the best laravel tuts i ever watched dude, congrats!!
Awesome, Brad. I admire your magic ability to publish tuts on hot topics.
yesterday I was checking the channel for laravel projects, what a great time!
Beginning of Blue from Eiffel 65 at 31:41
Thank you very much for the tutorial !
Thank you so much Brad, you are always amazing!. just a side note, we can use Route::apiResource instead of Route::resource in the route. also if you type hint the parameters in the update/delete methods with the model class, Eloquent will automatically fetch the object for you ;)
He is not using resource class I think that's why he didn't use Route::apiResource(), I guess that's the reason. I always use resource class and then use apiResource in all my route resources in api.php file.
Its Been So long since your first PHP Laravel Tuts...
Thanks Alot Brad
Thank you so much for your content. You have been such a great inspiration for me. I still remember the first video I saw from you on how to deploy a simple node.js app. Now, 3 dev jobs and on cs degree later, I still come back to your channel for tips and tricks! :) keep on!
Waiting for react + laravel tut 😍
Me too!
The official doc provides instructions on how to do it, using Mix tools.
Absolutely.
Or Vue + Lareval
Another Legendary Lesson From A Legendary Teacher ❤️
Man , u r perfect to explain everything crystal clear
Really Great Video had no idea at all about php and Laravel but thanks to you I feel little more safe around this language now and you're the first guy I really enjoyed listening to 1h without wanting to stop the video thank you very very much. Keep up the good work you're doing a great job
after installing sanctum and following your video, locked me out of my index and stuffed my backend! Thanks 4 the tut mate!
who feel happy when he see brad explain laravel 8
This is best Laravel tutorial channel. Thank you so much. You're just genius..
Amazing tutorial. Laravel should be more popular.
so glad to finally see my virtual mentor! thanks Brad!
Excellent video, helped me a lot to understand quickly about Sanctum API and got my development running in no time.
Really happy seeing this one! Do you have any plans to do more Laravel / PHP soon Brad? :)
Eres realmente muy bueno, te felicito, preciso y puntual, sin duda alguna debería haber mas tutoriales como los tuyos. Además lo explicas de una manera muy buena para poder despegar un proyecto base, saludos desde México.
i really like the way you make things look easy ! You're the best Brad ! Keep going !
your content ALWAYS helps. You're a great guy Traversy Media
I wouldn't be having a career if not for this guy.
Great thanks, bro! I have been struggling with Sanctum for more than 6 hours. Couldn’t sent correct request to protected route. There is no nothing about you need put token in authorization in documentation and other videos. Great respect!
Thank you sir BRad for this. More Laravel Tutorials please.
You uploading so many new vids, that now I wanna learn everything!! My man!!
Your teaching style is amazing.
first Mr Traversy! you're a legend!
Thank you for the hard work put into this video. A tutorial with a FrontEnd connected to this API would be really useful.
This tutorial is of excellent quality and has guided a fellow student and myself on our first steps with laravel's authentication. Thank you very much.
I love these tutorials. Always easy to watch, follow and understand. Thanks Brad. Oh, and I agree with the previous comment...more 🙂
Thank you Brad. I like laravel. The truth is I have a project ongoing and this helps me a lot (as always your tuts ar short and point on. No side chit chat) .
Hey Brad, just got started on Laravel, this was awesome! Thank you.
It's always nice to see your videos, specially when you are there at the corner!:) Stay safe!
I just watched your tutorial and it really helped me understand Laravel. Thank you for sharing your knowledge!
Legend
thank you very much We really need more tutorials about Laravel !
Thank you Brad
This tutorial helped me A LOT! Now the next part of my headless journey.
hey, brad loves your work and your tutorials help me a lot in my development carrier. please do a full website development course using laravel and please let us know when you are planning to live your nextjs course
Brad Traversy you are one hell of a person
As always, it is very easy to understand. Thanks Brad.
Health to you man.
I like this kind of tutorial, simple, efficient, straight to the point and practical.
This is a really good course. I always love Brad's courses and this is another great one.
I am happy to see you again rolling making videos!! welcome back!
Love your training videos. Thank you so much Brad from Thailand!
Very helpful in understanding Laravel auth sanctum! Thank you so much Brad!
The way u explained the things is just awesome....
Just finished another great topic from brad, you are soo helpful
Every time you read my mind and publish the tutorial that I need. Huge thanks and respect to you :)
For anyone having the same issue, at 45:40 vscode told me that tokens() didn't exist.
I changed the code from:
auth()->user()->tokens()->delete();
To:
$request->user()->tokens()->delete();
And that fixed it.
Thank you very much ..
You are a great teacher and your way of explaining is amazing.
I have been researching this topic for more than 4 months, and I only understood it through you. Thank you very much
🤩
Another great tutorial by Brad! I can't say thank you enough!
Very accessible tutorial on token-based authentication. Thank you!
Thank you Brad.. This video helped me gettting started in laravel.. Love from Pakistan
Brad, at around the 11:00 mark, you typed in the Product model to be imported.
You can actually download an extension called 'Namespace resolver' or something like that, and you can code with whatever classes you want, then right-click on the class, select "Import Class" from the context menu, and it will automatically do what you did by hand.
Thank you so much. I wish we could have statistics of how many people you help get better jobs and improve our quality of life. God bless you, or Tesla bless you if you're an atheist.
For Laravel 9 users: If the auth()->tokens()->delete(); provides an error then try using : $accessToken = $request->bearerToken();
$token = PersonalAccessToken::findToken($accessToken);
$token->delete();
thanks bro