while running php artisan eventnotification:mail
in command, it throws below error
"SQLSTATE[42S02]: Base table or view not found: 1146 Table "
My appserviceprovider.php
public function boot() {
$rolesList = $this->getRolesList();
View::share("rolesListArr", $rolesList);
}
My cron job:
protected function schedule(Schedule $schedule)
{
$schedule->command('eventnotification:mail')->everyMinute();
}
How can i fix the " [Illuminate\Database\QueryException] SQLSTATE[42S02]: Base table or view not found: 1146 Table "