step == 0){ $this->step = 1; $this->step_fa = 'گام اول (شناسایی)'; $this->save(); } } public function goToSecondStep() { if($this->step == 1){ $this->step = 2; $this->step_fa = 'گام دوم (اخطار)'; $this->save(); } } public function goToThirdStep() { if($this->step == 2){ $this->step = 3; $this->step_fa = 'گام سوم (برخورد)'; $this->save(); } } }