whereNotNull('published_at') ->where('published_at', '<=', now()) ->get(); foreach ($posts as $post) { $post->update(['is_published' => true]); $this->info("Пост {$post->id} опубликован."); } } }