I had a similar problem. My MASTERFUL BOSS (he's looking over my shoulder now) managed to spot the issue...
The method User::getReminderEmail() wasn't set (or rather - was empty). Thus this returns false, which in turns means that validation tries to put null into the DB.
/**
* Get the e-mail address where password reminders are sent.
*
* @return string
*/
public function getReminderEmail()
{
return $this->email;
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community