Hi. I gonna repeat myself but I love your channel. You ve found the very good way to explain concepts in LARAVEL. Even if I got some average knowledges thanks to you I still learn some new tips every video I watch. Continue that way and thanks for sharing your knowledges.
Currently having a project on creating a points/rewards system using laravel and your tutorials are really helpful. Thank you for your efforts in sharing and teaching us about laravel.
keep it up, you are the best teacher i have seen so far in laravel, however there is some notes as a student for example if i didn't know what do you mean by web middleware i wouldn't understand, in a fact for example you are run php artisan list:route and you show us the web middleware and you make it more understandable, and thank you again i hope you continue putting more lessons so we can get to an advanced level
Great tutorial, every instruction is clear, understandable and to the point. I was able to focus every step. Please, please make a video on gates & policies and the difference between middleware and gates. Haven't found any understandable video, please.
you are the best tutor. you should do more. appreciate it so much. hoping to get some tutorial for RESTFUL API using laravel. And a dedicated Vue tutorial. Bless.
We will cover that in the next series. This series is meant to introduce all of the core concepts of Laravel. We’ll get deeper on things like roles and permissions, in the next series.
Great video. Is it advisable to run a process from the database with middleware? For example user visited a particular page and i want to get the number of visitors that page had. After a request to web.php, i will update a visitors count from the database.
I think it's misleading to say until @4:48 that we ARE NOT using the TestMiddleware to a ROUTE or CONTROLLER, imo we are using the TestMiddleware at a GROUP level and since "/" ROUTE is inside the web.php file, the TestMiddleware ends up getting used for "/" route when we just type the default page or home page. am i correct?
I have a question. What command can i use whenever i input a payment and convert it to points. Like for every $100 the customer pays he gets 1 point. Do i use @foreach or @if for that? Or do you recommend another one?
@@CodersTape Do i put in the controller? I basically followed your structure except I changed the email to payment and want to get the amount of each customer's payment.
Excellent explanation - step by step - the where, the how, the why - and the consequences of the actions. Great Job !!
It seems like you're God sent, to come and tell us all we need to know about Laravel Framework. Thank You...
Excellent. God has gifted you with the ability to simplify complex subjects.
you are an amazing teacher, you know exactly the pace what how and where to show us how to do things
Thank you, much appreciated
Hi. I gonna repeat myself but I love your channel. You ve found the very good way to explain concepts in LARAVEL. Even if I got some average knowledges thanks to you I still learn some new tips every video I watch. Continue that way and thanks for sharing your knowledges.
you sir, are a genius teacher.
that example of how to use middleware just opens up a whole new window of ideas on how we can implement middleware for
Thank you.Great topic. Very articulate with clear audible voice.
Great videos so far....this is by far the best Laravel tutorial walkthrough series I have encountered! Thank you!
Currently having a project on creating a points/rewards system using laravel and your tutorials are really helpful. Thank you for your efforts in sharing and teaching us about laravel.
Great! Really i'm very satisfy to watch this tutorial
Good Stuff Again Victor, Good Stuff. Middleware clearly explained and not too complicated example. Middleware is now usable.
This guy is a hero! Thanks man for such a wonderful tutorial
keep it up, you are the best teacher i have seen so far in laravel, however there is some notes as a student for example if i didn't know what do you mean by web middleware i wouldn't understand, in a fact for example you are run php artisan list:route and you show us the web middleware and you make it more understandable, and thank you again i hope you continue putting more lessons so we can get to an advanced level
Excellent example, Thank You for sharing this knowledge.
Great tutorial, every instruction is clear, understandable and to the point. I was able to focus every step.
Please, please make a video on gates & policies and the difference between middleware and gates. Haven't found any understandable video, please.
wonderfull, I have seen a lot of tutorials of laravel on the web, I really assure you, yours are the best!, please make new ones for laravel 8!!
you are the best tutor. you should do more. appreciate it so much. hoping to get some tutorial for RESTFUL API using laravel. And a dedicated Vue tutorial. Bless.
awesome tips. keep it going. need to see Authorization
Wow .. You smoked it!!!
Thanks for the support
PERFECT.
best on youtube simply great
You are my hero.
amazing tutorial, thank you !
Perfect Perfect Perfect!!! Would it be possible to make another video about roles and permissions? Dive deeper into this
We will cover that in the next series. This series is meant to introduce all of the core concepts of Laravel. We’ll get deeper on things like roles and permissions, in the next series.
okay this is an awsum piece of explaination 😁😁
So fun!
(I really don't know who dislike this video ), Great tutorial
clear explanation
Thanks for the tutorial, as always! As it's kinda related to Middleware, do you plan on making a video about Policies?
It is on my list of topics but not sure if I will cover it on this series.
Great video. Is it advisable to run a process from the database with middleware? For example user visited a particular page and i want to get the number of visitors that page had. After a request to web.php, i will update a visitors count from the database.
perfect
Great! And how can we add a custom auth?
O.T: May I ask you the name of the prompt configuration you are using? I like this kind of bash
I think it's misleading to say until @4:48 that we ARE NOT using the TestMiddleware to a ROUTE or CONTROLLER, imo we are using the TestMiddleware at a GROUP level and since "/" ROUTE is inside the web.php file, the TestMiddleware ends up getting used for "/" route when we just type the default page or home page. am i correct?
The BEST as always!
It can be used as age gate without registration?
Please add some API integration with Laravel tutorial ...Thank You
I have a question. What command can i use whenever i input a payment and convert it to points. Like for every $100 the customer pays he gets 1 point. Do i use @foreach or @if for that? Or do you recommend another one?
Sounds like it's a simple math problem.
$points = (int)$amount / 100;
That will have some output like so
$amount = 45, $points = 0;
$amount = 99, $points = 0;
$amount = 100, $points = 1;
$amount = 199, $points = 1;
$amount = 200, $points = 2;
@@CodersTape Do i put in the controller? I basically followed your structure except I changed the email to payment and want to get the amount of each customer's payment.
Yes and then pass it to your view.
@@CodersTape will i have to put required on points in the validateRequest? Or i will just input a starting value?
Please upload custom login video
can i returun a view by middeware?
No but you can return a redirect that hits an endpoint with your view.