Support the ongoing development of Laravel.io →
Authentication
Last updated 1 year ago.
0

A way to do it with a simple field is:

if (Auth::attempt(array(
    'email' => Input::get('email'),
    'password' => Input::get('password'),
    'enabled' => '1', // custom field not a dynamic variable from POST or whatever but a fixed value
))) {
     // success
}

But if you need to care about relationships, then you'll have to do it the more inelegant way as far as I know, I'm afraid.

Last updated 1 year ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

sylarbg sylarbg Joined 13 Apr 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.