option('days'); $count = Entry::where('state', 'rejected') ->where('rejected_at', '<', now()->subDays($days)) ->delete(); $count += News::where('state', 'rejected') ->where('rejected_at', '<', now()->subDays($days)) ->delete(); $this->info("Deleted {$count} entries/news"); return self::SUCCESS; } }