After adding protected $table = 'user'; line of code in User model and renaming "users" table to "user" I am not able to do SignUp getting below error.
Illuminate \ Database \ QueryException (42S02)
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'lara6.users' doesn't exist (SQL: select count(*) as aggregate from `users` where `email` = [email protected])
The configuration is the $table property in the model. Validation is a slightly quirky side issue in that some rules do not rely on the Model, but rather on the table directly.