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

To authenticate users, check out the (documentation)[https://laravel.com/docs/5.2/authentication]

        if (Auth::attempt(['email' => $email, 'password' => $password])) {
            // Authentication passed...
            return redirect()->intended('dashboard');
        }

authentication service to uses my table user to make authentication instead of the table users

Regarding the table name, you change it in your (model)[https://laravel.com/docs/5.2/eloquent]


class Flight extends Model
{
    /**
     * The table associated with the model.
     *
     * @var string
     */
    protected $table = 'my_flights';

Hope that helps.

0

Sign in to participate in this thread!

Eventy

Your banner here too?

Khoya91170 khoya91170 Joined 10 Jun 2016

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.