think i fixed the error but adding the following to model/User.php
/**
* Get the unique identifier for the user.
*
* @return mixed
*/
public function getAuthIdentifier()
{
return $this->getKey();
}
/**
* Get the password for the user.
*
* @return string
*/
public function getAuthPassword()
{
return $this->password;
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community