04 - Authenticating Users in

  Рет қаралды 44,771

Laravel

Laravel

2 жыл бұрын

Пікірлер: 43
@juviscript
@juviscript 3 ай бұрын
This was super awesome to watch, Mohammed. The basic explanation in the beginning really helped but the rest of the tutorial in perspective. Super excited to code using Laravel!
@Abdulrahman-Mohamed
@Abdulrahman-Mohamed Жыл бұрын
competitive content and great information explanation .. thanks very much mohamed. #continue making wonderful tutorials
@user-dk5ek9nt2m
@user-dk5ek9nt2m Ай бұрын
Thank you! This is what I have been looking for.
@sherwinm
@sherwinm 2 жыл бұрын
I wish laravel UI was still in development. I know about breeze but UI was easier to customize with the traits. Breeze has so much other special sauce that I don’t need. I hope in future videos you’ll cover throttling
@user-vy7fn9vo7d
@user-vy7fn9vo7d 11 ай бұрын
Thank you, great session, very helpful.
@othmaniissa1172
@othmaniissa1172 Жыл бұрын
you make my life easy... thanks
@MuhammadImran-vh9er
@MuhammadImran-vh9er 2 жыл бұрын
What i learnt from this tutorial is, Said hates facades and love the helper functions.. 🤭🤭🤭
@themsaid
@themsaid 2 жыл бұрын
I use helpers when possible yes :D
@jimbolino
@jimbolino 2 жыл бұрын
Facades -> helper functions -> dependency injection :)
@MohamedAhmed-oy6wh
@MohamedAhmed-oy6wh Жыл бұрын
When I added auth middleware to Route dashboard return to login although I logged in
@imranhossain-qp8ej
@imranhossain-qp8ej 2 жыл бұрын
Need a video tutorial for creating and maintaining complex query by using eloquent ORM .
@olga_lc
@olga_lc Жыл бұрын
Wait, it has a built-in auth middleware right?
@freeEgyptian
@freeEgyptian 3 ай бұрын
Thanks Mr. Mohamed
@siangboongoh3076
@siangboongoh3076 2 жыл бұрын
perhaps it will be more convenience if this and the following episodes will maintain and develop from the same codebase from the beginning as this is a same learning series, or provide the link for the source for easing the practice along, especially the new comer...
@sanaeareina5371
@sanaeareina5371 Жыл бұрын
you'are perfect thank youuuuuuuuuuuuuuuu so much
@fitbouncer6795
@fitbouncer6795 2 жыл бұрын
is there any laravel developer job in florida, i'm from india
@bolaufv
@bolaufv 2 жыл бұрын
do you prefer to use helpers instead of facades on controllers?
@themsaid
@themsaid 2 жыл бұрын
Yes. It’s a personal preference
@GergelyCsermely
@GergelyCsermely 2 жыл бұрын
Thanks
@stein341
@stein341 8 ай бұрын
this is helpful, but how can get the email and password from my phpadmin database?
@morrocantuning6254
@morrocantuning6254 Жыл бұрын
sail command is not working
@mohamadcheaib
@mohamadcheaib 2 жыл бұрын
But you still using old version writing the controller@function in the route web.php!
@kennethkipchumba2532
@kennethkipchumba2532 Жыл бұрын
This doesnt seem to work in Laravel 9. I know many will get stuck.
@MohabZalat
@MohabZalat 8 ай бұрын
perfect
@p30mehrdad
@p30mehrdad 2 жыл бұрын
thanks, Do you have any plan to make some other tutorials for queue, jobs in complex scenarios?
@ronaldngarombo1026
@ronaldngarombo1026 2 жыл бұрын
This would be great. I need a better understanding of these tokens.
@themsaid
@themsaid 2 жыл бұрын
Yes. Will cover queues in future videos
@p30mehrdad
@p30mehrdad 2 жыл бұрын
@@themsaid yesssss, yesss, thank you, Bus,queue,job,chain.... are strongest powers of laravel. thank you🙏🙏🙏
@AimerYui
@AimerYui 2 жыл бұрын
@@themsaid thank you 🙏
@bendo01
@bendo01 2 жыл бұрын
first of all thank you, my question, are there any plans to make official package like laravel Sanctum for lumen?
@themsaid
@themsaid 2 жыл бұрын
No plans so far
@MULTICODE
@MULTICODE 2 жыл бұрын
@@themsaid thanks please can you provide us source code if possible? when i watch tutorial i always code along.
@edreesalhamli4523
@edreesalhamli4523 5 ай бұрын
cod?
@thelostrider1
@thelostrider1 2 жыл бұрын
I think it would also be good if sometimes you go more in depth so that new developers understand how things work. E.g. when you talked about the auth() helper method that returns the interface AuthFactory, it may be confusing for someone new to hear "returns an interface". Like "what, it returns an interface? but an interface doesn't have methods defined". Other than that, great content.
@rawaomer9169
@rawaomer9169 2 жыл бұрын
@artahir123
@artahir123 Жыл бұрын
auth()->attempt(request()->only(['email', 'password'])) how auth will know that i have to check this data in this table and check only these columns ?
@mukailarashid5428
@mukailarashid5428 11 ай бұрын
laravel has already made a bunch of default configurations about this. One may change it according to their needs otherwise, the first time you run the migrate command a table named 'users' is created along with all the stuff it might need such as the coresponding model, etc. also the default users table contains default columns such as email and password. the auth() command works with this in mind. Some of these configurations can be changed in the config>auth.php. I'm not a guru (yet), just my two cents 😁
@isstudents7923
@isstudents7923 Жыл бұрын
Hello need ur help
@LukePighetti
@LukePighetti Жыл бұрын
4:00 this password appears to be hashed and seeded, yes? Worth calling out that we need to do both
@simosaad9134
@simosaad9134 Жыл бұрын
i'm watching this video to learn laravel auth then i realize that my name is also mohamed said 😂😂😂😂😂😂
@anujverma8057
@anujverma8057 4 ай бұрын
Poor
@PetarVasilevX
@PetarVasilevX 2 жыл бұрын
Intro music horrible. Please change to something nicer...
@themsaid
@themsaid 2 жыл бұрын
Any suggestions?
05 - Token-based Authentication
12:52
Laravel
Рет қаралды 25 М.
Laravel SPA Authentication - setup and common mistakes
16:55
DAD LEFT HIS OLD SOCKS ON THE COUCH…😱😂
00:24
JULI_PROETO
Рет қаралды 17 МЛН
Best KFC Homemade For My Son #cooking #shorts
00:58
BANKII
Рет қаралды 68 МЛН
Jumping off balcony pulls her tooth! 🫣🦷
01:00
Justin Flom
Рет қаралды 25 МЛН
PHP is the future
34:27
Aaron Francis
Рет қаралды 171 М.
Why Don't We Have A Laravel For JavaScript?
12:36
Theo - t3․gg
Рет қаралды 92 М.
Authorization in Laravel: Can You Do That?
8:29
Laravel
Рет қаралды 8 М.
07 - The Queue Component in #laravel
12:44
Laravel
Рет қаралды 36 М.
What is Middleware ? How to use Middleware in Laravel with Example
13:47
Web Tech Knowledge
Рет қаралды 11 М.
Laravel: Avoid Try-Catch In Every Method (What To Do Instead)
4:45
Laravel Daily
Рет қаралды 30 М.
Session Management in Laravel - Beyond the Basics
11:30
Mohamed Said
Рет қаралды 26 М.
01 - Handling HTTP Requests
10:34
Laravel
Рет қаралды 11 М.
Laravel Roles and Permissions: All CORE Things You Need To Know
16:32
Laravel Daily
Рет қаралды 217 М.
НОВЫЕ ФЕЙК iPHONE 🤯 #iphone
0:37
ALSER kz
Рет қаралды 353 М.
Лучший браузер!
0:27
Honey Montana
Рет қаралды 933 М.
Kumanda İle Bilgisayarı Yönetmek #shorts
0:29
Osman Kabadayı
Рет қаралды 2,3 МЛН
Что делать если в телефон попала вода?
0:17
Лена Тропоцел
Рет қаралды 3,2 МЛН
📱магазин техники в 2014 vs 2024
0:41
djetics
Рет қаралды 358 М.
Хакер взломал компьютер с USB кабеля. Кевин Митник.
0:58
Последний Оплот Безопасности
Рет қаралды 2,1 МЛН