SQLSTATE[42S02]: Base table or view not found: 1146 Table '表' doesn't exist (SQL: select count(*) as aggregate from `表` where `username` = 123)
SQLSTATE[42S02]: Base table or view not found: 1146 Table '表' doesn't exist (SQL: select count(*) as aggregate from `表` where `username` = 123)
错误解释:报错的意思是,你的项目里 没有 那个表, 我报这个错误是因为,我用了验证,代码如下
$formData = $this->validate($request, [
'username' => 'required|unique:表名称,username',//unique 即 唯一验证,表名称 即 验证的表 ,username 即需要进行唯一验证的字段
'password' => 'required'
]);