diff --git a/app/Console/Commands/ScheduleHealth.php b/app/Console/Commands/ScheduleHealth.php index e03cb35..fc06855 100644 --- a/app/Console/Commands/ScheduleHealth.php +++ b/app/Console/Commands/ScheduleHealth.php @@ -42,10 +42,10 @@ class ScheduleHealth extends Command public function handle() { - $projects = Project::whereNull('deleted_at')->get(); + $projects = Project::where('company_id', 5)->get(); $totalProjects = $projects->count(); $updatedProjects = []; - + Log::info($totalProjects); foreach ($projects as $index => $project) { $project->scurve = MasterFunctionsHelper::getSCurve($project->id);