How to create a secure login system connected to the database in Laravel 5.3?

Asked

Viewed 4,144 times

-3

I have a project in laveral 5.3 that I am building an administration.

I already have the whole database structure created. I now want to login with fields username and password. You won’t have a public record, just log in.

I’ve already created a system, but it’s not working, because indicates to me that the table users does not exist. I just want to use my own tables and do not know how, and I want it to be a secure login with validations.

If you can help me.

Routes

Route::get('admin/login', 'admin\LoginController@showLogin'); // Mostrar login
Route::post('admin/login', 'admin\LoginController@postLogin'); // Verificar datos
Route::get('admin/logout', 'admin\LoginController@logOut'); // Finalizar sesión

Route::group(['before' => 'auth'], function()
{
    Route::get('admin', function (){

    });
});

Controller Login

namespace App\Http\Controllers\admin;

use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
use DB;
use Auth;
use Illuminate\Support\Facades\Input;

class LoginController extends Controller{

    public function showLogin (){

        if (Auth::check()){
            return Redirect::to('/admin');
        }
        return view('admin/login');
    } 

    public function postLogin(){

        $data = [
            'username' => Input::get('username'),
            'password' => Input::get('password')
        ];

        if (Auth::attempt($data, Input::get('remember')))
        {

            return Redirect::intended('admin');
        }

        return Redirect::back()->with('error_message', 'Invalid data')->withInput();
    }

    public function logOut(){
        Auth::logout();
        return Redirect::to('admin/login')->with('error_message', 'Logged out correctly');
    }
}

Config.php

return [

    /*
    |--------------------------------------------------------------------------
    | Authentication Defaults
    |--------------------------------------------------------------------------
    |
    | This option controls the default authentication "guard" and password
    | reset options for your application. You may change these defaults
    | as required, but they're a perfect start for most applications.
    |
    */

    'defaults' => [
        'guard' => 'web',
        'passwords' => 'users',
    ],

    /*
    |--------------------------------------------------------------------------
    | Authentication Guards
    |--------------------------------------------------------------------------
    |
    | Next, you may define every authentication guard for your application.
    | Of course, a great default configuration has been defined for you
    | here which uses session storage and the Eloquent user provider.
    |
    | All authentication drivers have a user provider. This defines how the
    | users are actually retrieved out of your database or other storage
    | mechanisms used by this application to persist your user's data.
    |
    | Supported: "session", "token"
    |
    */

    'guards' => [
        'web' => [
            'driver' => 'session',
            'provider' => 'users',
        ],

        'api' => [
            'driver' => 'token',
            'provider' => 'users',
        ],
    ],

    /*
    |--------------------------------------------------------------------------
    | User Providers
    |--------------------------------------------------------------------------
    |
    | All authentication drivers have a user provider. This defines how the
    | users are actually retrieved out of your database or other storage
    | mechanisms used by this application to persist your user's data.
    |
    | If you have multiple user tables or models you may configure multiple
    | sources which represent each model / table. These sources may then
    | be assigned to any extra authentication guards you have defined.
    |
    | Supported: "database", "eloquent"
    |
    */

    'providers' => [
        'users' => [
            'driver' => 'eloquent',
            'model' => App\User::class,
        ],

        // 'users' => [
        //     'driver' => 'database',
        //     'table' => 'users',
        // ],
    ],

    /*
    |--------------------------------------------------------------------------
    | Resetting Passwords
    |--------------------------------------------------------------------------
    |
    | You may specify multiple password reset configurations if you have more
    | than one user table or model in the application and you want to have
    | separate password reset settings based on the specific user types.
    |
    | The expire time is the number of minutes that the reset token should be
    | considered valid. This security feature keeps tokens short-lived so
    | they have less time to be guessed. You may change this as needed.
    |
    */

    'passwords' => [
        'users' => [
            'provider' => 'users',
            'table' => 'password_resets',
            'expire' => 60,
        ],
    ],

];

  • 2

    What is Laveral ?

  • Although the version is different, the process is the same.

  • I had to see but this version is not the same as they say there to do

  • Laravel’s own authentication system has its validations. If you change the table, it won’t change the security. If you want additional validations, you can use the Laravel Validator for this purpose. I think the question has gotten a little wide.

  • You can add fields, make relationships with the same table, exchange it for another can mean you need to write code and know how the process works, it’s not easy, but, it’s possible, I just believe it’s unnecessary. Do with the current table even, and with the same class it saves time, updates are always happening etc ...

  • @Diegosouza I believe that it is not duplicated, because it changes a lot of the Laravel 5.1 to the 5.3

Show 1 more comment

2 answers

1

Your question is quite wide, but from what I understand you want to use a table of yours to authenticate. So come on.

Go to the file app/config/auth.php and change lines:

'model' => 'App\User',
'table' => 'users',

Alter model for the name of your model and table for the name of your table in the bank.

In the Laravel 5.3 come these commented lines, take the comment and do the action, remember that the new table must have the fields needed for authentication.

// 'users' => [
//     'driver' => 'database',
//     'table' => 'users',  //Aqui você coloca o nome da sua tabela
// ],

'providers' => [
    'users' => [
        'driver' => 'eloquent',
        'model' => App\User::class, //Aqui você coloca sua model
],

But this doesn’t change the authentication logic of Laravel, simply changes the table and the model.

  • But I’ve had it in that file and I don’t have it in the code

  • Already put it see and edit the question as I should do then

  • I’ll edit the answer

  • I edited the answer, please take a look.

  • I didn’t realize that the model is what the model is? and where they are created ?

  • @Césarsousa model comes from the MVC standard that is independent of language, roughly speaking it is the entity class. In it you define the attributes of the entity, business logic, the default directory of the models in the Laravel is \app, but I recommend you take a look at the documentation and the way the development is done with Laravel, not to touch the wrong things.

  • I already managed to change the table but now Dame an error when I try to login to Undefined index: password

Show 3 more comments

-1

You can use the generator Auth standard of the Laravel.

php artisan make:auth

Login, registration and "dashboard" (post login), model and controller views will be generated automatically.

You may have more details accessing the documentation.

  • But it uses with their tables and the generated views I already have the views that and a template I want to use my tables with my fields I created

  • @Césarsousa you can use the generator and place the columns you want, and modify the views the way you want.

  • @Césarsousa but his doubt is about the authentication system of Laravel or simply how to change view login forms?

  • And in the authentication system it’s going to a users table when it doesn’t exist in my database I want to use my custom tables and this I don’t know how to do

  • Okay, I’ll formulate an answer

Browser other questions tagged

You are not signed in. Login or sign up in order to post.