Great course and even greater way of explaining how to do it. Man, it takes a great amount of skill to translate something a bit complicated in such a simple way. Great work!
It was such a fantastic course to enjoy and learn. I had a lot of confusion about API development and even don't have such good ideas in case of API development. Thank you for this course.
Absolutely amazing content ! This is by far the most helpful Laravel content I’ve come across. The explanation is clear and thorough, and I got to know multiple concepts from this one video. Really appreciate the effort you put into making this, thanks a lot! Waiting for more videos on laravel like this.
Hi! Thanks so much for the kind words! 😊 We're so glad the video was helpful to you. We'll definitely be sharing more Laravel content soon, so stay tuned for that! Cheers!
As far as I know, Envato is talking about design. So, when I see this video, I'm little doubtful. But, surprisingly the explanation in this video is amazing and complete. For example, the versioning of API which is crucial in development but not discussed very often in another tutorial. Why you make a programming tutorial, Envato? Hahaha. Btw, thank you
This is great but needs updating for Laravel 11.x - maybe just adding some notes in the description would be enough to help people. There are quite a few changes mean that following this tutorial won't work for a lot of people. Most notably that api routes are not installed OOB anymore, so you need to need to run php artisan install:api
Hi loved the tutorial just one question at 27:00 you said anyone using the API would expect camelcase , but i could stg every single third party API i used even from big companies like (google/facebook etc..) use the same naming conventions as SQL in their responses ( postal_code for example) , so which one is right lol
I think Laravel creates that because of the relationship 'hasMany'. Laravel is smart enough (and abstracts lots of things) to understand customer class has many invoices so it says I should create function called hasInvoices. I am not sure but I think this is the case because it runs without problem
What a nice tutotial - I like it. 44:43 While implementing filter transform, I didn't understand how "[gt]" and the likes were passed and where the $oprators arrays were gotten. Please, I need clearifcation.
Great tutorials for thinking in advanced tips on build stronger API's. One thing, I come from LATAM, so my keyboard too, and my "not equal" symbol that it works is this: '!='
I've come from Django, React and Vue, and hate with my soul php, BUT laravel seems quite entertaining and your video made it usable for a project of mine, thank you!
Thanks for the video, very useful course! I have a small question, at 30:50 in the response results the current_page and last_page are not written in the Camel case, how can I fix this? I understand that Laravel returns this automatically, but I still want to put things in order.
I'm done with the entire course, enjoyed every second of it and I'm gonna use it as reference in my upcoming projects. But Sir I have a request, could you please make a video on how to integrate Swagger docs into a laravel api? There are a couple of resources around, but most aren't helpful enough. Thank you.
$adminToken = $user->createToken("admin-token", ["create", "update", "delete"]); it return form me tha the createToken method is not define on the user
Instantiate variable $user like this: $user = User::where('email', $credentials['email'])->first(); It will return App\Models\User instance, which should have HasApiTokens trait.
Great course! I've learned a lot from you, thank you. For the bulk insert section, you could consider moving the logic for removing the 'customerId', 'billedDate', and 'paidDate' data from the controller to a protected function called 'passedValidation' in the BulkStoreInvoiceRequest.php . What do you think? So it would look like this: protected function passedValidation(){ $data = collect($this->toArray())->map(function($arr, $key){ return Arr::except($arr, ['customerId','billedDate', 'paidDate']); })->toArray(); $this->merge($data); }
I have this issue please help: "message": "SQLSTATE[42S22]: Column not found: 1054 Unknown column 'postalCode' in 'field list' (SQL: insert into `customers`, I did everything but my prepareForValidation() is not working.
can someone explain to me i read the documentation however i still don't get the difference between with and loadMissing and when do i use them. Thanks
Super awesome tutorial 🖤🖤 But in 1:32:13 I'm not getting the invoices of a single customer but I'm still getting the invoices when i call for all the customers How can I fix it I did everything just like the he did
how about if we have 100 abilities or 100 role to apply to applicaton that we have build, so we must generate 100 token for those abbilities or role every sign in ? and how about make new abilities or role after applicaton running ? add the createtoken to the apps mannualy every time want to add new abilites or role ?
I am facing a problem. The problem is when I give a filter parameter in string for example city[eq]=washington, it doesn't give any data but if I give parameter in number for example amount[eq]=3000 then it's working and another problem only lt,gt,eq is working for me, other's don't. How can I remove this problem?. please give me the solution.
Great tutorial, it is really appreciated. What is your reasoning for CamelCase JSON rather than snake_casing? I see some people say it makes things easier for Java/C++/Python. Thoughts?
This guy sounds like a mix between documentary and a flight instructor. Awesome
Exactly 😆!! that's crazy man !! I really appreciated ... Thk you
Dude this is the best turorial I've watched so far
Coming from MERN, this was the best video I needed to grasp everything. Thanks lot Jeremy
Glad you enjoyed it!
its been a million times that i have came back to this video because all its magnificent things it has to offer, great job❤
Thank you so much 😀💚
One of the best tutorials ever, you should make a lot more, very well explained and clear to understand
Great course and even greater way of explaining how to do it. Man, it takes a great amount of skill to translate something a bit complicated in such a simple way. Great work!
Glad you enjoyed it!
@@envatotuts How to validate if customer exists when saving invoices?
True
Best Tutor, his teaching way gives you confident to start any project.
This is one of the greatest tutorials of all time, exactly what you need to know no extra bs
It was such a fantastic course to enjoy and learn. I had a lot of confusion about API development and even don't have such good ideas in case of API development. Thank you for this course.
It is the best course i've never seen, Thank u so much!. Greetings from Venezuela
Excellent short course. However, this needs to be updated, hope you guys would work on this one again :D
Im really glad that i found this channel. I hope i can watch all your videos. Thank you!
I hope so too! But, there are a lot of videos!
Mindblowing , the way how he illustrate and explain things
Best tutorial ever watched. keep it up. love your work.
I hadn't done with Laravel for a long time. It's really helpful. Thank you for your video.
Glad it was helpful!
Ohhh VietNamese...
This video saved my life, props to the guy 👊👊
Absolutely amazing content ! This is by far the most helpful Laravel content I’ve come across. The explanation is clear and thorough, and I got to know multiple concepts from this one video. Really appreciate the effort you put into making this, thanks a lot! Waiting for more videos on laravel like this.
Hi! Thanks so much for the kind words! 😊 We're so glad the video was helpful to you. We'll definitely be sharing more Laravel content soon, so stay tuned for that!
Cheers!
由浅入深,由表及里,层层递进。非常值得推荐的Laravel视频!👍
This is a great course, excellent teacher. Very clear explanations!
Thanks a lot, the first time I thought this video did not help me. But this video did help me a lot. Thank you again.
As far as I know, Envato is talking about design. So, when I see this video, I'm little doubtful. But, surprisingly the explanation in this video is amazing and complete. For example, the versioning of API which is crucial in development but not discussed very often in another tutorial. Why you make a programming tutorial, Envato? Hahaha. Btw, thank you
best tutorial in planet earth, period
Best and clear tutorial so far!
Please note for non-windows users you must use a forward slash rather than a backslash when using artisan make:resource folder/resourcename
We love you Envato Tuts developer!
It helps me a lot more than anything so far....
Thank you sensei
Many Thanks, It was a pleasure to follow you in this tutorial
This is great but needs updating for Laravel 11.x - maybe just adding some notes in the description would be enough to help people. There are quite a few changes mean that following this tutorial won't work for a lot of people. Most notably that api routes are not installed OOB anymore, so you need to need to run php artisan install:api
Thanks for the tutorial.
Note: "php artisan install:api" command creates the routes/api.php file for Laravel 11.
can't recommend your tutorial enough, thanks a lot
Glad to hear that
one of the best video on rest api
Thank you so much 😀
hey , from where the hasInvoices() in the seeder came from does laravel know it automatically?
yes due to the naming convention, laravel auto detects and does its magic. ofcoz the relationships have to be built
One of the great video I have seen 💓I loved your voice 💓
Thank you so much 😀
gran video me ayudo a comprender demasiado varias partes del framework laravel y de la implementacion de sanctum
Great envato tuts team we are waiting for this course premiere ...
Would u make a tutorial about react +laravel +authontification and thnx❤
Awesome tutorial! Thank you!
You're very welcome!
Hi loved the tutorial just one question at 27:00 you said anyone using the API would expect camelcase , but i could stg every single third party API i used even from big companies like (google/facebook etc..) use the same naming conventions as SQL in their responses ( postal_code for example) , so which one is right lol
sir at what point did you define the method hasInvoices in the customerSeeder class .My ide flags it as undefined method.thank you
I think Laravel creates that because of the relationship 'hasMany'. Laravel is smart enough (and abstracts lots of things) to understand customer class has many invoices so it says I should create function called hasInvoices. I am not sure but I think this is the case because it runs without problem
tanks for this tuto , i was abel to start my journy with laravel ,thanks a lot
19:22 if don't see Route's data, to be seen 404 not found, Enter command "php artisan serve" in your project folder.
in my humble opinion, your voice is better than Morgan Freeman
I love your voice for learning
What a nice tutotial - I like it.
44:43 While implementing filter transform, I didn't understand how "[gt]" and the likes were passed and where the $oprators arrays were gotten.
Please, I need clearifcation.
BROTHER, YOU ARE THE BEST!!! You oooh really helped me!! THANK YOU VERY MUCH!
You are welcome!
Thank You for this course, Its really helps, More knowledge to your brain bro
47:30 . Target class [App\Http\Controllers\Api\V1\Request] does not exist. what is the problem please ?
my working when put this --> use Illuminate\Http\Request; at top of customercontroller.php below it namespace, before the rest of 'use'
try 'composer dump-autoload --optimize' in your terminal.
trust me , this is better even paid course
Thank you , next laravel and vue project please
Great tutorials for thinking in advanced tips on build stronger API's. One thing, I come from LATAM, so my keyboard too, and my "not equal" symbol that it works is this: '!='
I've come from Django, React and Vue, and hate with my soul php, BUT laravel seems quite entertaining and your video made it usable for a project of mine, thank you!
Perfect course! Many Thanks
What extension for VSC are you using ?
I got everything I needed to know in this one video. Thank you!!
Thank you for this video!
can we have thу same readable api as this 25:36 but in chrom with some extension ?
All things worked but I have faced with error that 'General error: 1364 Field 'customer_id' doesn't have a default value' 01:23:04 implemented
Thank you for the very efficient course that you have explained in the simplest possible way.
great tutorial, however I found problem in 1:10:51 when using "protection", then changing to "protected"
Nice course, Could please make a video about graphQL in Laravel ?
Thanks for the video, very useful course!
I have a small question, at 30:50 in the response results the current_page and last_page are not written in the Camel case, how can I fix this? I understand that Laravel returns this automatically, but I still want to put things in order.
I'm done with the entire course, enjoyed every second of it and I'm gonna use it as reference in my upcoming projects. But Sir I have a request, could you please make a video on how to integrate Swagger docs into a laravel api? There are a couple of resources around, but most aren't helpful enough. Thank you.
$adminToken = $user->createToken("admin-token", ["create", "update", "delete"]);
it return form me tha the createToken method is not define on the user
Same here. Did you manage to find a solution?
Instantiate variable $user like this:
$user = User::where('email', $credentials['email'])->first();
It will return App\Models\User instance, which should have HasApiTokens trait.
I am using laragon, and i have problems to display the object on web browser, anyone would know how to fix it? (404 | page not found)
awesome teaching skills
Thanks a ton! 😊 We’re thrilled you think so. Cheers!
i wish my like button turns into 1000 likes button !
what a PRO tutorial
thank for this valuable tuto, My question is there another tuto example that shows how to consume thise rest API?
could you make a more advanced tutorial this tutorial was really good.I learnt alot
Amazing Tutorial , Thank you so much
You are welcome!
Great course. Is there a GitHub repository for this course?
Great course! I've learned a lot from you, thank you. For the bulk insert section, you could consider moving the logic for removing the 'customerId', 'billedDate', and 'paidDate' data from the controller to a protected function called 'passedValidation' in the BulkStoreInvoiceRequest.php . What do you think?
So it would look like this:
protected function passedValidation(){
$data = collect($this->toArray())->map(function($arr, $key){
return Arr::except($arr, ['customerId','billedDate', 'paidDate']);
})->toArray();
$this->merge($data);
}
Very good and useful tutorial Thanks!
Absolutely love the video, also... love your vscode theme and icon set, could someone let me know what is being used here?
Wow. this is so easy to understand.
can i use this for my mobile application making conection with the api and the mobile app?
Thank you very much! Very helpful
very talented teacher - cheers
Glad you think so!
Best of the best tutorial
I have this issue please help: "message": "SQLSTATE[42S22]: Column not found: 1054 Unknown column 'postalCode' in 'field list' (SQL: insert into `customers`, I did everything but my prepareForValidation() is not working.
sorted
Can you tell me pls how you solved it? I dont know how to solve
@@gieldewinter7068 Actual answer: postalCode in the $fillable array in the Customer model should actually be postal_code.
Do you have a tutorial that shows how to create a laravel app that consume these api?
Amazing course
can someone explain to me i read the documentation however i still don't get the difference between with and loadMissing and when do i use them. Thanks
I love this, havan't come across this kind of tutorial (Very understandable)
Bad Method Call: Did you mean App\Models\customer::invoice() ?
it gives me this error
Following Keenly. Is there any VSCode extension you are using to define comparison operators such as 'lte' sign? Someone help.
Will this work on laravel 10 or laravel 11?
Super awesome tutorial 🖤🖤
But in 1:32:13 I'm not getting the invoices of a single customer but I'm still getting the invoices when i call for all the customers
How can I fix it
I did everything just like the he did
Wow thank you. Great tutorial. A lot of valuable information was given.
Glad it was helpful!
how about if we have 100 abilities or 100 role to apply to applicaton that we have build, so we must generate 100 token for those abbilities or role every sign in ? and how about make new abilities or role after applicaton running ? add the createtoken to the apps mannualy every time want to add new abilites or role ?
May I know why you skipped out on delete request? Finished the course
All customer id fields in invoices are null after seed operation. Can't continue.
Thank you for the tutorial. I will look out for you other tutorials. Loved it
I am facing a problem. The problem is when I give a filter parameter in string for example city[eq]=washington, it doesn't give any data but if I give parameter in number for example amount[eq]=3000 then it's working and another problem only lt,gt,eq is working for me, other's don't. How can I remove this problem?. please give me the solution.
fantastic video thank you so much 😍
what the version of laravel you are use?
Great video, thanks a lot!
A great tutorial to follow with senior developer tips, this is really excellent! ♥🍻
Glad it was helpful!
Anyone know if this works on Laravel 9 & PHP 8?
I keep getting 404 on my routes /api/v1/customers ? Thanks
yes it work
Make sure the server is running with "php artisan serve"
Great course ♥♥
Thank you! Cheers!
Great tutorial, it is really appreciated. What is your reasoning for CamelCase JSON rather than snake_casing? I see some people say it makes things easier for Java/C++/Python. Thoughts?