芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/www/wp-content/plugins/fluentform/app/Http/Controllers/SubmissionNoteController.php
sendSuccess( $submissionService->getNotes($submissionId, $this->request->all()) ); } catch (Exception $exception) { return $this->sendError([ 'message' => $exception->getMessage(), ]); } } public function store(SubmissionService $submissionService, $submissionId) { try { return $this->sendSuccess( $submissionService->storeNote($submissionId, $this->request->all()) ); } catch (Exception $exception) { return $this->sendError([ 'message' => $exception->getMessage(), ]); } } }