What i want
I wanted to use the laravel authentication system that has been obtained by using php artisan make:auth
command
what happened
- I can see the items that is registered by the register form but i am not able to log in through the app with those credentials.
- Error:These credentials do not match our records.
What i did
php artisan make:Auth
User.php
namespace App;
use Illuminate\Contracts\Auth\Authenticatable;
use Illuminate\Auth\Authenticatable as AuthenticatableTrait;
use Illuminate\Database\Eloquent\Model;
class User extends Model implements Authenticatable
{
protected $fillable=['name','password','email'];
protected $table='blog_users';
public function getAuthIdentifierName(){}
public function getAuthIdentifier(){}
public function getAuthPassword(){}
public function getRememberToken(){}
public function setRememberToken($value){}
public function getRememberTokenName(){}
}
What i tried
I tried to provide my action methods but i still cannot log in through these credentials and i still see the same error.
What i hope
To get a better understanding about my problem and the solution about it?
Snapshots