⌚ Timestamps: 00:00 Introduction 00:51 Definition of Facade 03:15 Example of in-built Facade 06:08 Create a custom Facade 11:42 Aliases for Facades 13:41 Create our own implementation of Facade 18:54 Real-Time Facades
@disguisedgirl3 жыл бұрын
Where have you been? You are the best Laravel trainer I've found so far! You explain many untouched and advanced topics in an easy but solid approach.
@QiroLab3 жыл бұрын
I am glad you like my content. I was busy with some other things. Now I will try my best to upload videos regularly.
@ghaleda17852 жыл бұрын
So far, this is the almost complete tutorial I've bumped into about Laravel Facades for beginners. Thanks for sharing.
@jeesambo2 жыл бұрын
Before I hate Facade, but now I love Facade. I like your method of teaching.
@QiroLab Жыл бұрын
Thank you! Cheers!
@digitalgenre71942 жыл бұрын
Teaching requires you to understand what needs to be understood and this is what separeted you from others outhere. You explain to the basics details. Thank you.
@QiroLab2 жыл бұрын
Thank you
@macrotom164410 ай бұрын
Brilliant, you just got yourself a follower.
@QiroLab10 ай бұрын
Glad you liked it
@shumonbalok97033 ай бұрын
Nice explanation. Helpful!
@QiroLab3 ай бұрын
I'm glad it was helpful!
@negi_vipin Жыл бұрын
Thanks for the videos, it helps a lot understanding the concept.
@QiroLab Жыл бұрын
Glad to hear that!
@michaelplichart32242 жыл бұрын
Very good tutorial. Thank you
@QiroLab Жыл бұрын
Thank you
@pjr2 жыл бұрын
How did you customize VS code for Laravel development?
@zhasan662 жыл бұрын
Really awesome video tutorial.
@QiroLab2 жыл бұрын
Thank you! Cheers!
@neerajsinghtangariya25873 жыл бұрын
Really helpful. Now I understood how Facades and what it is..
@QiroLab3 жыл бұрын
Great to hear!
@tousifrafat2 жыл бұрын
Thank you for this video.
@brainyworld21843 жыл бұрын
Nice content as always. Please keep making videos on how Laravel work under the hood.
@QiroLab3 жыл бұрын
Thanks, will do!
@luuktimmermans36842 жыл бұрын
do you kno how i can make 2fa required on jetstream and remove the revovery codes.
@QiroLab2 жыл бұрын
Jetstream is using Laravel Fortify for 2FA. So you should watch this video. It may help you. kzbin.info/www/bejne/qHWmooZobJyXjLM
@muhammadsananahmad31242 жыл бұрын
nice to learn keep it up
@QiroLab2 жыл бұрын
Thank you
@matthelosh2 жыл бұрын
Thank a lot. Its really useful for me..
@QiroLab2 жыл бұрын
You are welcome.
@JamiulBari2 жыл бұрын
Thanks for your videos. Recently I have followed your Laravel passport OAuth 2.0 videos. It was a great video. I was looking for something like it to create an SSO (Sign Sign-On) for multiple laravel projects (1st Party). But could not figure it out. Then I realized OAuth is actually for authorization, not authentication (I can be wrong). So, I am pretty puzzled regarding it. If you have a solution/idea for SSO for the first party laravel project, please make a video or blog about it. It will be helpful for many others. Or at least show some directions if you are aware.
@jijeshc2 жыл бұрын
Thank you bro
@QiroLab2 жыл бұрын
Welcome
@arshahin98033 жыл бұрын
Initially, I think facade is like helper function
@ask4funs_solution Жыл бұрын
what? the whole facade is just to make static method????? why cant we write "static" on the method is sufficient ?
@QiroLab Жыл бұрын
With the help of the facade, you can chain the function or call it statically. For example `Model::where()->first()` `Model::latest()->where()->first()` In this example, the `where()` method is called statically as well as chained. But in the case of the static method, you cannot chain it.
@1mr4n4li2 жыл бұрын
Just import any class with backslash in start etc import \App\Services\SomeService; will convert it to facade automatically
@1mr4n4li2 жыл бұрын
You don't need to do anything else. If you don't want to import every time just edit config/app.php and add your service class there