class User extends Model implements AuthenticatableContract, CanResetPasswordContract {
use Authenticatable, CanResetPassword;
/**
* The database table used by the model.
*
* @var string
*/
protected $table = 'members';
and error -
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'vdvizhenii.users' doesn't exist (SQL: select count(*) as aggregate from users
where email
= ******)
It looks like user table is defined in 3 different place out of the box Laravel 5.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community