09 - Authentication

preview_player
Показать описание


This video we will show you how easy it is to get setup with a full authentication system using Laravel.

Рекомендации по теме
Комментарии
Автор

Just watched all your videos yesterday, REALLY great work, excellent examples, clear pronunciation and good speed so it never gets too slow! Keep up the great work!

johannordstrom
Автор

thank you i moved from yii2 to laravel inspired your tutorials

cevahir_jewellery
Автор

Great videos keep doing what you are doing. Im trying to get started with Laravel and your videos are really usefulll for beginners like me.

steffenn
Автор

Thanks for the tutorial. I really like the colour scheme of your terminal, do you mind sharing the settings you have for osx terminal preference and bash scripts in .bash_profile or .bashrc?

zilchajxu
Автор

Great tutorial. Thank you so much. Can you tell me which kind of software do you use to make this video?

trieunguyen
Автор

hi, really great series I've learned a lot from it . Just, could you please make a playlist because I've look for the clips and I don't know exactly how many clips there are. Thanks in advance and keep going I'll follow you.

shgh
Автор

In case someone experiencing a problem with auth/logout, there is simple way out you need to change the line from:
to:
in routes.php file

mbahojlo
Автор

How can you make it so that when someone registers their login info are sent via email. Could you make a video about sending email in Laravel 5.1?

csmatyi
Автор

Would you recommend using the custom Sentinel-package that's been around since Laravel 4 (and is based on Sentry), or the creators of Senty's new package with more features (confusingly also called Sentinel)?

johannordstrom
Автор

/auth/login and /auth/register work fine, but when I load up /auth/logout I get this error: "NotFoundHttpException in RouteCollection.php line 161" I copy/pasted the route info from the website just like you did, not sure what else I need to do here. thanks for ur help

JonathanRichey
Автор

Hello thanks for this great intro series simple authentication works just fine but I am stuck at how to do authorization since we don not have a single user type in our application we need a way to different user based on their type what they can access and what they cannot. please help

salmansaysit
Автор

I would also like to request on how can make a standalone JSON web API which can be used via our front-end angularjs or reactJs and how to manage authentication and authorization plus how can we also send status codes with response.

salmansaysit
Автор

Your videos are great! I have watched them all today and it has been a great intro to Laravel. I am having one issue on this one though. I copied my routes and created my two blade files (login.blade.php and register.blade.php).

In my browser, I load up register.blade.php, fill out the form, and nothing happens.

And yes, I do have the route for 'home' setup as well.

The only thing I did differently is call my databased 'development' instead of 'auth'.

I ran the migration command and successfully setup my tables as well.

Any ideas? Is there an error logger somewhere?

Thx

JonathanRichey
Автор

Awesome stuff. I got all of this stuff to work on C9.io. How do we deal with assets?

JasonCtutorials
Автор

hey man...you are really good....i understand u a lot. Thanks....you should do like a project using laravel or something. Do you have a paid course of this or something...

easyjapaneseforall
Автор

I suggest using the auth middleware rather than redirecting to login page, u can add a public function __construct(){ $this->middleware('auth'); } to your controller and all functions inside will work only if logged in, and if the user is not logged in he will be redirected!

Btw; nice tutorial!

DrNoxer
Автор

How can I include Email verification? Is there a package available to implement this?

deontemunene
Автор

Hi Devdojo, Thanks for the Video. Wish to share an update. Since yesterday trying this 'authentication' but unfortunately not able to get this working. At last found the reason behind it. This is on 5.1 version, Laravel has updated composer to framework 5.2. To make this work in 5.1, tried this code -- composer create-project laravel/laravel="5.1.0" --prefer-dist {project name} & got succeeded. Just wish to share this info incase someone searching for solution in comments ... like me...

hari
Автор

During registration, Is it Only the users table can be inserted ? or can i make another table where I can insert those values. Thanks

abrhambas
Автор

Amazing work, I've watched all videos too. Can I ask one question about computing and database? There's one thing is not clear for me. Could anyone point it out? Should I choose to store computed value of two database fields into database and return it after or should I compute every time I show it? ex. Start time = 10, End time = 12. Total = 12-10=2. Thanks in advance! :)

shwedaz