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