call(function () { foreach (TelActivation::get() as $t) { if (time() > strtotime($t->ttl)) { TelActivation::where('id', $t->id)->delete(); } } foreach (EmailActivation::get() as $e) { if (time() > strtotime($e->ttl)) { EmailActivation::where('id', $e->id)->delete(); } } })->everyMinute(); // $schedule->command('inspire')->hourly(); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }