'date', 'horizon_end' => 'date', 'results' => 'array', ]; public function scheduledOperations() { return $this->hasMany(ScheduledOperation::class, 'schedule_run_id')->orderBy('planned_start'); } public function createdBy() { return $this->belongsTo(User::class, 'created_by'); } }