option('days'); $cutoff = now()->subDays($days); $count = Entry::query() ->where('featured', true) ->where('featured_at', '<=', $cutoff) ->update([ 'featured' => false, 'featured_at' => null, ]); $this->info("$count entr" . ($count > 1 ? 'ies' : 'y') . " unfeatured."); return self::SUCCESS; } }