芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/www/wp-content/plugins/fluentform/app/Http/Controllers/ReportController.php
sendSuccess( $reportService->form($this->request->all()) ); } catch (Exception $e) { return $this->sendError([ 'message' => $e->getMessage(), ]); } } /** * Get Submission Report * @return \WP_REST_Response */ public function submissions(ReportService $reportService) { try { return $this->sendSuccess( $reportService->submissions($this->request->all()) ); } catch (Exception $e) { return $this->sendError([ 'message' => $e->getMessage(), ]); } } }