Laravel 6 Beginner - e9 - RESTful Controllers Part 1

  Рет қаралды 36,900

Coder's Tape

Coder's Tape

Күн бұрын

RESTful Controllers help guide your development process and give you guidelines on how to implement your CRUD actions. Let's take it one step at a time implementing and adding the concept customers into our application.
For the best experience, follow along in our interactive school at www.coderstape...
Laravel RESTful Controllers
laravel.com/do...
DigitalOcean Referral
m.do.co/c/7dce...
About This Course
If you have been looking to learn Laravel, there hasn't been a better time. The framework reached an important point in its life, with the release of Laravel 6. There has never been more demand for Laravel developers than now. In this series, we are going to get you started in your path to becoming a Laravel Artisan. Let's get right to it!

Пікірлер: 38
@ademineshat
@ademineshat 5 жыл бұрын
Finally I get to understand Laravel, I've searched for so long, but here it is. Thank you very much. I'm pretty sure soon there will be ton of subscriber's, you really deserve it!
@alvinkariuki236
@alvinkariuki236 4 жыл бұрын
Your tutorials are short but are able to retain so much useful information. Thanks great stuff
@bugoutsanchez6063
@bugoutsanchez6063 5 жыл бұрын
Victor. I am amazed at you and your ability to create this much content and really give people like me a leg up man. I am off to donate to coders tape. Thanks for doing what you do. I been catching your podcast too. 54 yo system engineer here making changes. Thanks again.
@CodersTape
@CodersTape 5 жыл бұрын
Truly appreciate it. Thank you
@tulsirammarasini3352
@tulsirammarasini3352 5 жыл бұрын
please make video in AJAX CRUD operation using RESTful controller in laravel 6
@Mocka-yf4ez
@Mocka-yf4ez 3 жыл бұрын
wonderful explanation, thanks a lot
@cubedev4838
@cubedev4838 4 жыл бұрын
U should make one project in your channel maybe 4-5 hours long in one video..maybe ecommerce project or cms, i highly believe your channel will blow up by doing this :)
@davidsonzed
@davidsonzed 5 жыл бұрын
Please show image upload and how to use gates to protect user actions. Thank you for the great and valuable lessons.
@MoatazMohamady
@MoatazMohamady 5 жыл бұрын
Thanks best wishes your way in teaching is simple and clear.
@amjadarbas9721
@amjadarbas9721 4 жыл бұрын
Than you for all, what is the shortcut for multiple selection?
@kadirbay13
@kadirbay13 4 жыл бұрын
Your narration is good.
@jorgea.garzav4650
@jorgea.garzav4650 4 жыл бұрын
I'm learning not just laravel, but the code completion of phpstorm.
@wassim5622
@wassim5622 5 жыл бұрын
I love the tutorial simple, helpful and informative :) keep the great work
@helloworld3914
@helloworld3914 5 жыл бұрын
you could use Route::resource(); instead of creation a lot of Route::get()
@vakasghulamnabi9259
@vakasghulamnabi9259 3 жыл бұрын
I am having one issue. When i use old and there is no previous value the form shows a /. I have tried covering with if statement but that doesn't work. any body has an idea
@bhaidar
@bhaidar 4 жыл бұрын
Hello, great course! Do you put the code on GitHub for reference?
@GregZimdahl
@GregZimdahl 4 жыл бұрын
I assume the protected $guarded array could be filled with fields you want guarded? You mentioned that using the protected version would require you to update the array for each new field. Guarding just a few key fields would allow new fields to mass assign automatically? Is my assumption correct?
@krenjeroth
@krenjeroth 5 жыл бұрын
Hi sir! A bit confused on naming the Controller tho. I remember you saying Controllers should be plural? but when you "make:model Customer -c" the controller name seems to be the same as how you named the model. In your opinion sir which will you suggest to follow CustomersController or CustomerController?? Edit: fix typo :)
@CodersTape
@CodersTape 5 жыл бұрын
HAHA this comes up from time to time, I've always named my controllers plural when I manually create them but Laravel adopted a singular convention a while ago and I have been struggling to change old habits since then... bare with me, I'll get it right :)
@krenjeroth
@krenjeroth 5 жыл бұрын
@@CodersTape HAHA will do sir! Looking forward to the upcoming episodes. 😜
@einnlleinhattha3445
@einnlleinhattha3445 5 жыл бұрын
I have a row with nullable property and if i type something i want to show it in the view. If i add the row into validation it will show the value but that row is optional, it can be a null or have a value.
@CodersTape
@CodersTape 5 жыл бұрын
You would use "sometimes" laravel.com/docs/6.x/validation#conditionally-adding-rules
@adam192021
@adam192021 5 жыл бұрын
The BEST as always!
@kunz3986
@kunz3986 5 жыл бұрын
please make video in AJAX CRUD operation using RESTful controller in laravel 6 same message as @Tech. Vai since i want to know how to do that as well :)
@NathanBudd
@NathanBudd 5 жыл бұрын
It would be really useful if you did a video demoing how to setup auth in 6. I've bought your SPA course, and with it being on 5.8, the make:auth command doesn't work anymore. Having a video, and perhaps including it here and in the Udemy course would be cool.
@CodersTape
@CodersTape 5 жыл бұрын
It's coming soon, I already have it in the works.
@pramod9200
@pramod9200 5 жыл бұрын
It will be great if you make tutorials about Ajax in laravel
@just_the_job
@just_the_job 5 жыл бұрын
In your ajax request you can have the :url point to the controller. Example: url:'/admin/product/categories/'+ id +'/edit'. Use the restful approach for your routes, then target your divs with a response.
@ProgrammingwithPeter
@ProgrammingwithPeter 5 жыл бұрын
I have upload and delete files via Ajax, if it helps you
@juanantonionavarrojimenez2966
@juanantonionavarrojimenez2966 5 жыл бұрын
Hi ¿ What's the phpstorm theme ?
@CodersTape
@CodersTape 5 жыл бұрын
github.com/vicgonvt/phpstorm-settings
@juanantonionavarrojimenez2966
@juanantonionavarrojimenez2966 5 жыл бұрын
@@CodersTape Thank you very much. Merry christmas and happy new year.
@KingKhan-sl5kt
@KingKhan-sl5kt 5 жыл бұрын
How we can insert data in two tables ? Using eloquent relationship ? I'm not understanding Plz make video or give me simple code.
@CodersTape
@CodersTape 5 жыл бұрын
kzbin.info/www/bejne/lWPae4qMhqp5d7c
@mostafamosavi7362
@mostafamosavi7362 5 жыл бұрын
please make a VueJs CRUD application
@blakebrady3586
@blakebrady3586 2 жыл бұрын
I want to buy this tool, because I want to scam bank email,
@Alphabet_-_
@Alphabet_-_ 5 жыл бұрын
@JohnnyBigodes
@JohnnyBigodes 5 жыл бұрын
Instead of having to write every ressource method you could just create a controller with the -resource parameter to do the same. Yes i know you have done this to show people how it is normaly done, but this is also very time consuming.
Laravel 6 Beginner - e10 - RESTful Controllers Part 2
17:20
Coder's Tape
Рет қаралды 23 М.
Laravel 6 Beginner - e8 - Form Validation
25:34
Coder's Tape
Рет қаралды 48 М.
Andro, ELMAN, TONI, MONA - Зари (Official Music Video)
2:50
RAAVA MUSIC
Рет қаралды 2 МЛН
Laravel 6 Beginner - e11 - RESTful Controllers Part 3
13:28
Coder's Tape
Рет қаралды 19 М.
РОБОТ-ПЫЛЕСОС за 1$ vs 1000$ !
23:02
GoldenBurst
Рет қаралды 198 М.
Every Minute One Person Is Eliminated
34:46
MrBeast
Рет қаралды 11 МЛН
Laravel 6 Advanced - e9 - Soft Deletes
12:17
Coder's Tape
Рет қаралды 26 М.
Andro, ELMAN, TONI, MONA - Зари (Official Music Video)
2:50
RAAVA MUSIC
Рет қаралды 2 МЛН