在命令中运行php artisan eventnotification:mail
时,它会抛出以下错误
“SQLSTATE [42S02]:未找到基表或视图:1146 表”
我的 appserviceprovider.php
public function boot() {
$rolesList = $this->getRolesList();
View::share("rolesListArr", $rolesList);
}
我的 cron 工作:
protected function schedule(Schedule $schedule)
{
$schedule->command('eventnotification:mail')->everyMinute();
}
如何修复“ [Illuminate\Database\QueryException] SQLSTATE[42S02]: Base table or view not found: 1146 Table”