public function steps()
 {
     $steps = parent::steps();
     if ($this->preloadPlan !== null) {
         foreach ($this->preloadPlan->steps() as $step) {
             $steps[] = $step;
         }
     }
     return $steps;
 }