php - Laravel Auth login -
i'm using laravel 5.1
schema::create('users',function(blueprint $table){ $table->increments('id'); $table->string('usr_username'); $table->string('password'); $table->integer('usr_peopleid') ->length(10) ->unsigned(); $table->timestamps(); $table->softdeletes(); $table->integer('usr_groupid') ->unsigned() ->length(10); $table->integer('usr_deletedid') ->unsigned() ->length(10); $table->integer('usr_updatedid') ->unsigned() ->length(10) ->nullable(); $table->integer('usr_createdid') ->unsigned() ->length(10) ->nullable();
this migration code users table , routes.php
route::get('/login', 'auth\authcontroller@getlogin'); route::post('/login', 'auth\authcontroller@postlogin'); route::get('/logout', 'auth\authcontroller@getlogout');
i'm trying login , ok redirects login page again! there no error can't login
Comments
Post a Comment