form->getState(); $examRep = new ExamRepository(); try { $this->record = $examRep->store($data); send_admin_success_notification(); if ($another) { // Ensure that the form record is anonymized so that relationships aren't loaded. $this->form->model($this->record::class); $this->record = null; $this->fillForm(); return; } $this->redirect($this->getResource()::getUrl('index')); } catch (Exception $exception) { do_log($exception->getMessage() . "\n" . $exception->getTraceAsString(), "error"); send_admin_fail_notification($exception->getMessage()); } } }