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.
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.
You and Mosh are the greatest code Instructors on RUclips 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.
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
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.
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 👍
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 :)
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
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.
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.
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!
"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 😀
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!
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 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.
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 only have a couple things to add maybe it helps someone: - for the user selection by email at the login, better to create a scope in the model - don't validate inside the controller, it breaks SOLID principle. use a form request instead, with php artisan make:request RegisterRequest, and the use that in your controller - instead of bcrypt being used inside the controller you should have put inside the user model as a mutator. great tutorial though!
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
You are looking great and comfortable in your studio. You might want to give us a tour of the studio and the work environment. I want to glance the stuff around.
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!
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.
Love this tutorial, Rock on! on the side note, i have found out one reason on why the errors are not formatted in json when there are errors, It is because laravel on error inspects $request->expectsJson(), when false redirects to login blade, setting the Accept=Application/Json sets it to true thus returning json format of the error.
Thank you!!!!! Finally!!!!!!!!! I stopped for months because I got pissed off. Not enough tutorial on RUclips for Laravel. Especially SPA with Sanctum. Now I can move forward again. Thanks 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.
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 🤩
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
For Laravel 9 users: If the auth()->tokens()->delete(); provides an error then try using : $accessToken = $request->bearerToken(); $token = PersonalAccessToken::findToken($accessToken); $token->delete();
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) .
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 was afraid of Laravel but using your tutorial I am getting interest in it. It was really helpful to learn about Authentication and CRUD. Is there any tutorial How to upload Image and Create PDF? I am pretty sure Now I can create API for my own Mobile Application. Thank you Brad!
I must say, really great video. I'm a new developer and often look online for help, it would be a great video idea if you can make one as you are a more experienced one. For a project, there will be 3 parts: Part - 1: Setup of the project using languages like node, config, path setup and many more things Part - 2: Real Coding of the project Part - 3: Final finishing and uploading on websites like GitHub Many developers on youtube have videos related to Part-2, some with a little bit of Part-1, Part-3. It would be a great help for new developers like me if you can make a clear, even long (i like long and informative videos), specifically on Part - 1 and Part - 3 ONLY ONLY........
Great tutorial. I have always been scared of making API since I learned laravel. I was going to learn nodejs, and even though I did, I always thought laravel was way easier. Please, any chance you could do a video with laravel and vuejs? I want to see how the routing will work (in terms of accessing pages and actually sending the data from a vuejs form). Thanks again!
Just a quick warning for anyone who wants to use this for production. Don't use $request->all() to insert data. Users can modify EVERY fillable field in the table. Use $request->only(["column1", "column2"]) or except(["role"]) so you prevent users from adding a field and guessing a record you don't want users to modify. For example the user role column they can guess to make themselves Admin 😉
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.
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.
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)
You and Mosh are the greatest code Instructors on RUclips 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.
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
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 !
Waiting so long for your own laravel content. Thank you so much 😍
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!
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 👍
I got a job as a php/laravel developer after watching your videos. Gudos bro. Love your teaching steps.
Awesome tutorial, dude! I went from having never touched Laravel to being confident enough to make an API with authentication.
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.
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!
Thanks Brad. I've been a web developer for two years now because of your tutorials. Thanks cheers...
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 :)
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.
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
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.
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.
Brad, I always learn something good and new whenever I watch your tutorials in the easiest and simple way. Thanks
Respect from Pakistan 🇵🇰
I do remember when I started Laravel, watching your Crash Course back in 2017
A Laravel tutorial with Microservices Architecture would be greaaaat!!! Thank you!
Just create several apis that split down the domain content
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.
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!
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!
"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 😀
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!
finally some laravel stuff !
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
Compared to other tutorials, I think this is the only tutorial that is simple and very clear. Thank you so much brad
I have been thinking about this for a few days now. This guy can read minds. Thanks man
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.
This is exactly why I need it right now for my college task.
semang cuk
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!
Your teaching style is amazing.
this really was very VERY helpful. Thanks!
Just a note: in 2022, most of the Sanctum configs are built in to Laravel...
i only have a couple things to add maybe it helps someone:
- for the user selection by email at the login, better to create a scope in the model
- don't validate inside the controller, it breaks SOLID principle. use a form request instead, with php artisan make:request RegisterRequest, and the use that in your controller
- instead of bcrypt being used inside the controller you should have put inside the user model as a mutator.
great tutorial though!
Beginning of Blue from Eiffel 65 at 31:41
Thank you very much for the tutorial !
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
You are looking great and comfortable in your studio. You might want to give us a tour of the studio and the work environment. I want to glance the stuff around.
It was nice as ever, thank.
At 32:17 we doesn't need that middleware, that is for SPA and stateful requests , I think
Finally Laravel from you. Need a complete advance course.
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!
The way u explained the things is just awesome....
This is best Laravel tutorial channel. Thank you so much. You're just genius..
Man , u r perfect to explain everything crystal clear
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.
Love this tutorial, Rock on!
on the side note, i have found out one reason on why the errors are not formatted in json when there are errors, It is because laravel on error inspects $request->expectsJson(), when false redirects to login blade, setting the Accept=Application/Json sets it to true thus returning json format of the error.
Finally! Laravel!! We've been waiting so long!!!!!!!!!!!!! Please , make videos about Laravel more!!!!!!!!!!!!!
love laravel after node and express, it is my go to framework for backend
This tutorial helped me A LOT! Now the next part of my headless journey.
Finally some laravel content .
Hey Brad why don't you consider making a series to teach laravel in depth .
Another Legendary Lesson From A Legendary Teacher ❤️
Thank you!!!!! Finally!!!!!!!!! I stopped for months because I got pissed off. Not enough tutorial on RUclips for Laravel. Especially SPA with Sanctum. Now I can move forward again. Thanks Brad!
who feel happy when he see brad explain laravel 8
Very accessible tutorial on token-based authentication. Thank you!
I learned more in an hour than a month at my actual school. Thank you 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.
Excellent video, helped me a lot to understand quickly about Sanctum API and got my development running in no time.
Amazing tutorial. Laravel should be more popular.
after installing sanctum and following your video, locked me out of my index and stuffed my backend! Thanks 4 the tut mate!
Thank you so much for this tuto
just for the logout i change it to: $request->user()->tokens()->delete(); and it works
I have been waiting for it, since I watched your "10 projects with Laravel back in the days on Eduonix". Thanks
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
🤩
thank you very much We really need more tutorials about Laravel !
Thank you Brad
Thank you for the hard work put into this video. A tutorial with a FrontEnd connected to this API would be really useful.
this is one of the best laravel tuts i ever watched dude, congrats!!
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
Thanks for the video guide. Most useful. One caveat is that if there is no "logout" between logins, you can use previous tokens to authenticate.
I just watched your tutorial and it really helped me understand Laravel. Thank you for sharing your knowledge!
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
Really helpful tutorial for beginners like me Sir, very straight forward.
Thank you
I like the way you teach. I know I will benefit a lot if I watch this video
Thank you! A follow up with REACT would be amazing
This is ALL the video I NEEDED to get started! I owe you a lot, Brad!!
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) .
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 was afraid of Laravel but using your tutorial I am getting interest in it. It was really helpful to learn about Authentication and CRUD.
Is there any tutorial How to upload Image and Create PDF?
I am pretty sure Now I can create API for my own Mobile Application.
Thank you Brad!
Javascript expert and still same In laravel. Wish I could do same.
Thanks very much for videos always learn allot from them
Thank you Brad.. This video helped me gettting started in laravel.. Love from Pakistan
Thank you sir BRad for this. More Laravel Tutorials please.
You are the best teacher of all time, am just enjoying learning new technology from you
I must say, really great video. I'm a new developer and often look online for help, it would be a great video idea if you can make one as you are a more experienced one.
For a project, there will be 3 parts:
Part - 1: Setup of the project using languages like node, config, path setup and many more things
Part - 2: Real Coding of the project
Part - 3: Final finishing and uploading on websites like GitHub
Many developers on youtube have videos related to Part-2, some with a little bit of Part-1, Part-3.
It would be a great help for new developers like me if you can make a clear, even long (i like long and informative videos), specifically on Part - 1 and Part - 3 ONLY ONLY........
Very helpful in understanding Laravel auth sanctum! Thank you so much Brad!
I wouldn't be having a career if not for this guy.
I like this kind of tutorial, simple, efficient, straight to the point and practical.
Great tutorial. I have always been scared of making API since I learned laravel. I was going to learn nodejs, and even though I did, I always thought laravel was way easier.
Please, any chance you could do a video with laravel and vuejs? I want to see how the routing will work (in terms of accessing pages and actually sending the data from a vuejs form).
Thanks again!
Fantastic Work, You have made many Peoples' life pretty easy
this video is a lifesaver. love from india
yesterday I was checking the channel for laravel projects, what a great time!
Just a quick warning for anyone who wants to use this for production.
Don't use $request->all() to insert data. Users can modify EVERY fillable field in the table.
Use $request->only(["column1", "column2"]) or except(["role"]) so you prevent users from adding a field and guessing a record you don't want users to modify. For example the user role column they can guess to make themselves Admin 😉
Thank you for mentioning that
Or if you using request class to validate fields, you can use $request->validated() in controller :)
@@TraversyMedia ur laravel course is outdated pls update it.
`i think i'm good in laravel now cz i understand every single code line from comments... thanks brad
Thanks, Learned the Laravel APIs in one single video,!
Thanks Brad. Expecting a react-Based Front-End tutorial for this Backend!
Thanks Brad, as always great video. Would be great if you could do front end stuff with reactjs to continue this video..
Really happy seeing this one! Do you have any plans to do more Laravel / PHP soon Brad? :)
Just finished another great topic from brad, you are soo helpful