Sat through all 14 episodes and, as always, your time and assistance is greatly appreciated. Thank you
@71970556 жыл бұрын
I am new in laravel and going to start build APIs and have learnt lots of things from you. Thanks a lot
@DodaGarcia4 жыл бұрын
Your teaching is very thorough!! Thank you for this video.
@sokhaitrey92116 жыл бұрын
Best explain. Please make the video that cover all the advance concept of Laravel. Thank you
@cristalmen91045 жыл бұрын
Thank you so much for your vids! One of the most powerful Laravel channels in youtube. Each video in one breath!
@CODINGISEASY5 жыл бұрын
he inspired me to create a channel :P
@penruxtechnology1427 жыл бұрын
Maaaan.... this laravel series is awesome... keep up with the good work... love the format of your videos...
@taloto077 жыл бұрын
Hi Alex! Great video. Keep it up. Can you do API authentication and authorization?
@MrGeneticLizard6 жыл бұрын
Use Laravel Passport! laravel.com/docs/5.7/passport
@cristianmerli50505 жыл бұрын
I am used to use DTOs (to hide or include extra fields). Are resources the way to go now? The difference I guess is that with DTOs the extra fields are included in the same object, while with resources you have "data" and extra fields outside of it.
@King_Eke6 жыл бұрын
This is great, can you make a video of how we can use this to do CRUD functions with the API ? making sure it also checks that it's the admin that's logged in or what not. Thanks
@ozgirl7 жыл бұрын
Great videos! Thank you so much for the time and effort Alex!
@daledurham30486 жыл бұрын
Not sure if something changed or if it's a bug, but when pagination is added, the collection goes back to using the full model (unless overriden on the collection). I noticed yours did not, but mine did.
@afolabisamuel69924 жыл бұрын
Awesome and Great Tutorial, Thumbs up.
@sumitsharma-us2sl7 жыл бұрын
pretty longer as per regular videos but lots of stuff to cover Thanks for making a great video
@TristanBailey7 жыл бұрын
round about 20mins head exploded with reduced effort to now do this. Looks a handy new to paginate resource collection feature.
@haroldpepete4 жыл бұрын
You're the man my friend, if you launch for president, count with my vote
@bloggervista7 жыл бұрын
Hi thanks :) Been following this series. Thanks for all videos :) I guess now its turn for build and advanced blog cms right?
@qcasares6 жыл бұрын
Excellent, enthusiastic and insightful.
@nerguibaatarn75727 жыл бұрын
Thank you for all series
@md.shafayatulhaque62736 жыл бұрын
Thanks Mr. Alex
@lserranoit4 жыл бұрын
Hello, it can be used to send programmer message to the front for post or put request. To send warnings or error messages?
@fahimriaz46805 жыл бұрын
Thanks Alex your the best .
@himak216 жыл бұрын
Very great, useful videos. Great Jobs!! See you next video ;)
@talihaarif95443 жыл бұрын
Inside a for loop calling the api resource and after returning data from resource pushing in an array. And return that array from resource. sometime it does not call the resource or sometime it call more than required times. How to solve this?
@Battlestad5 жыл бұрын
Hi. I'm quite new to Laravel. Why is it wrong to just format the data directly in the controller? I dont really understand why we need a new class just for that purpose
@أسامةسلامة-ع1ف6 жыл бұрын
..hi ..i have problem when using paginate .when using resource meta and links not show ??
@onlineenergy71514 жыл бұрын
I love u and u r talking.... May god bless u
@ShivarajRH6 жыл бұрын
Very frequently used keywords are STATUS, with value "success" or "error", with the same level of "data".
@eissa64435 жыл бұрын
Thank you , you saved me a lot of time.
@437manoj3 жыл бұрын
Excellent
@krzysztofjabonski55726 жыл бұрын
Hi Alex! I know it's been a while since you uploaded this video, but I have one little question. Why are you using web route? Laravel has file called api.php in routes folder and I wonder which one should I use? Can you explain it, please?
@stephenmccallister9677 жыл бұрын
Thanks for making the videos. I am a beginning freelancer and I am in the process of learning laravel and I find your videos very helpful. Any advice on getting started learning laravel?
@CODINGISEASY5 жыл бұрын
do you need any help?
@nenadfemic8617 жыл бұрын
best educator
@vukasinzurzevic42067 жыл бұрын
GREAT FEATURE! you are good as always, I have one question for you Alex. What is your opinion about Laravel's future? Is popularity of this framework growing, how long is gonna be 'live'? Tnx
@JacurtisTutorials7 жыл бұрын
Laravel is stronger then ever and growing faster every day. I am seeing large companies start to adopt Laravel now because they finally feel like it is stable enough to rely on. The LTS releases help a lot with larger scale adoption as well. PHP has stood the test of time and people continue to come back to it as a reliable way to write code for the web. So having a truly great framework like this in PHP helps a lot. PHP suffered from having way too many frameworks before, and every framework had its own unique purpose. Most frameworks didn't last long, but Laravel has grown like no other framework ive seen in PHP. I really think it is going to grow to the strength of Ruby on Rails. I feel very confident about it. Other technologies i would keep an eye on are using front-end JS frameworks paired with backend APIs (think Vue.js/Angular/React paired with Node.js/Laravel/Lumen backends). I am seeing a lot of development move this direction. Not forgetting server side frameworks like Laravel, but using them for the backend and server side while relying more heavily on JS frameworks like Angular, Vue, and React for the frontend. Another growing trend which I have videos planned for is going serverless. This is especially good to complimenting extremely large projects or overtaking very small projects. This allows services like AWS or Microsoft Azure to run scripts on demand so that instead of keeping a server running 24/7 to handle requests, you just write a script and host it on a serverless platform like AWS Lambda. Of course serverless computing pairs very well with the JS frameworks i mentioned above, cutting our server side. But we are seeing really large companies like AirBnB and Uber combining serverless for microservices and server-side frameworks for the bulk of their backend models and controllers.
@vukasinzurzevic42067 жыл бұрын
Thank you for this comment Alex, Laravel is my first love and I had some projects where I used Laravel for server side and AngularJS for frontend as you said...it's good combination. Also I am glad to see that Laravel still growing and I think it will be great if you do in future some tutorials where you will use Laravel and AngularJS :)
@mostafakawsarlive85747 жыл бұрын
Thank you jacurtis brother.
@quyettv4046 жыл бұрын
hi alex, can you compare API resource with Transformer lib. I think they have the same result. Thank you
@JenniferJames-gj4ol6 жыл бұрын
love ur efforts
@paitrex7 жыл бұрын
Why should we use resources instead of create function in models? How to display hidden values ?
@jonathanespinosamtz7 жыл бұрын
Hi @DevMarketer I have problems with the relations, if I put only the relation: $this->relation is working, but if I do not want to get all the colums is giving me error, example: $this->relation->id, this return me that Property [id] does not exist on this collection instance. Can you help me? Thank you
@justincv7 жыл бұрын
$this->relation()->id
@stefanosgiannakis71517 жыл бұрын
Very helpfull '' thanks ! I will be glad if you teach us how to "consume" api's using laravel
@prabhat2k157 жыл бұрын
What if i dont have a foreign_key ? How will i relate other table?
@sunaaldua256 жыл бұрын
thanku alex for the video... i wanted to ask what if we now have to integrate the api's with a view(blade file)? how can we do it? thanku in advance
@AavinSeth5 жыл бұрын
In eloquent toJson() how do i change my key name and customized my data in controller?
@winwinsp4 жыл бұрын
Hello Can I send full $user record like return ['user' => $this], please advise. I am getting error like recursive ...
@bernardchisumo40547 жыл бұрын
Thank you very much for a nice tutorial . I would like to request a tutorials for the following packages Cashier Envoy Horizon Passport Scout Socialite if u have a time
@roberto93696 жыл бұрын
just what i need. thanks man
@mohamedmohiy7 жыл бұрын
thanks for the video, i have a question, what if i want to make many formats for the same resource?
@thegabzboy7 жыл бұрын
So would this replace Fractal Transformers?
@JacurtisTutorials7 жыл бұрын
Yes exactly. This replaces Fractal.
@thegabzboy7 жыл бұрын
Cool...one less package to install
@ryan.aquino7 жыл бұрын
Make a tutorial on a angular 4 as frontend and laravel as backend plss :))!that would be a great example project for apo requests
@roduankd7 жыл бұрын
is it useful when I use ajax request in my app(meaning is it better to use json and ajax to get my data from the Controllers) ?? cuz I was suffering with json and csrf and couldn't solve it till now!! really upsetting I really hope to undersand it more in the "Curtis" way and Thank u for ur efforts that u ve made in the series it was really helpful for me ;)
@SilconOne7 жыл бұрын
Hey Alex Great work bud. Interest on a tutorial on Cashier and Stripe Subscriptions if you have the time THX.
@abhishekjain90377 жыл бұрын
Thanks Alex...
@foysalfoysal43047 жыл бұрын
Nice one. Go ahead.
@ts-nq7bo6 жыл бұрын
Can you please make a tutorial Angular js as a frontend and laravel backend
@arvind85ful7 жыл бұрын
Hi, I want to create post request api in laravel.Please guide me..
@baseerx6 жыл бұрын
Can you please make a video series on frontend VueJs use with laravel as framework,tutorials on vuejs are custom.
@jboxy6 жыл бұрын
What's a micro API in a monolithic framework?
@RostyslavShynlov6 жыл бұрын
As always u amazing. It's a pity what you disappear from youtube
@CODINGISEASY5 жыл бұрын
Im looking for laravel video ideas can I make you one?
@RostyslavShynlov5 жыл бұрын
@@CODINGISEASY as i know, rest full api is good idea for example laravel php its backend with implemented rest service for messages (todo list etc) on frontend you have vue or react for CRUD its only my opinion
@CODINGISEASY5 жыл бұрын
I will make a video on it! @@RostyslavShynlov
@mvishalshukla0077 жыл бұрын
hi can u please make video on how to enable cors in laravel and about headers
@neeleshkrishna55804 жыл бұрын
Hello buddy i just want to change my api url like /api/customer/1 customer is an endpoint and 1 is id of the customer but i want /api/customer/jon where jon is name can you suggest me how can i do that?
@tornikemenabde91886 жыл бұрын
Sorry for beginner question but why we can't just return this JSON data directly from the controller without API resource? P.S good tutorials thanks for the channel i learned lot from you
@CarlosAlbertoBrasil5 жыл бұрын
How can I sort the data?
@ljka6 жыл бұрын
Thank you :)
@shekhsaifuddin13535 жыл бұрын
Why are you not create new videos.? Bro..😢😢 miss you
@xseman6 жыл бұрын
22:20, well that doesn't work, but call to the another collection works. Great video tho :)
@myohtet3196 жыл бұрын
Thank
@tornikemenabde91887 жыл бұрын
why we are saying return NEW userResource, we are not creating we just return existing user can someone explain why we need new?
@Mcakmakali6 жыл бұрын
I have such a problem :( Command "make:resource" is not defined.
@CODINGISEASY5 жыл бұрын
it is php artisan make:resource ResourceName
@baseerkahn95616 жыл бұрын
Sir,I have a question, if i hit resource controller URI using c++,will it return data in json formate to c++ variable?
@jiansu6 жыл бұрын
not sure what u mean by using C++ this is PHP. If your C++ app hit the PHP backend what you get is JSON response, Doesn't matter if u r using C++ or C# or Java app to consume it. by the end of day you need to parse json objects
so cool, basically eliminates the need for me having to have learned 5 languages....
@anshuverma11827 жыл бұрын
php artisan make:resource Product this command is not working in laravel 5.5
@CODINGISEASY5 жыл бұрын
resources were introduced in later versions
@pooriahonarmand1115 жыл бұрын
Thanks still in 2019
@_the_one_17 жыл бұрын
Hey you are awesome and you know that.Thank you very much for these clear and good understanding free tutorials. But i BEG you!!!Build something great with Laravel & VueJS.Please ?!!? It is the most searchable programming topic. You'll get many thanks for that...pleeaseee
@MrAKGarg0077 жыл бұрын
Hi guys, I am new to Laravel, Can any body guide me, Which version I have to start from ?
@CODINGISEASY5 жыл бұрын
I have a beginner setup guide
@arvinkenndelossantos77536 жыл бұрын
You just saved me from learning Fractal
@jeanandrewfuentes29956 жыл бұрын
Make A tutorial On Laravel as API Web Service layer to Web/Android/iOs
@mohammadirvan73084 жыл бұрын
how about many to many relationship
@shahidb78147 жыл бұрын
Dear Honorable Sir, Could you please tell me how can I send Username and Password to that User's mail after Registration New User in Laravel ? Regards Masum
@Kliamframe6 жыл бұрын
Look at me! I'm watching this video WITHOUT adblock
@DerkJanSpeelman7 жыл бұрын
don't name your Resource class classNameResource! Name it className only. (like in the video). Because otherwise it's collection won't inherit the return value of the toArray function!
@johndavedecano24387 жыл бұрын
LODI!!!
@limitlesskode3 жыл бұрын
Is it my eyes or do you look like young Elon @DevMarketer
@thatsenam91833 жыл бұрын
Mini Elon Mask
@adamsonvispo79156 жыл бұрын
huge thanks elon musk! please teach us how to hack NASA using html
@timomuller21626 жыл бұрын
You are smarter than you look :P just kidding :)
@harunthuo26105 жыл бұрын
you're just stupid. come to another man's channel and behave like a 6 year old