daily()->at("23:00"); } /** * Function used to specify what the task does. */ public function run() { // Remove sessions over 2 days old Session::where('last_activity', '<', time()-(60*60*48))->delete(); return true; } }