mode = 2; // MODE_FIELD // $this->action = 2; // ACTION_GOTO $this->so->sendBaseline($this->so->co,RED.'INVALID DETAILS, TRY AGAIN *00'); return FALSE; } try { $this->uo = User::where('login',array_get($fielddata,0))->firstOrFail(); } catch (ModelNotFoundException $e) { $this->so->sendBaseline($this->so->co,RED.'USER NOT FOUND, TRY AGAIN *00'); return FALSE; } if ($this->uo->password != array_get($fielddata,1)) { $this->uo = new User; $this->so->sendBaseline($this->so->co,RED.'INVALID PASSWORD, TRY AGAIN *00'); return FALSE; } $this->so->log('info','User Login: '.$this->uo->name); $this->page = ['frame'=>1,'index'=>'a']; // @todo Get from DB. $this->action = 2; // ACTION_GOTO $this->mode = FALSE; return TRUE; } }