service->list($request->validated()); }, __('message.fetched')); } /** * 양식 상세 조회 * GET /v1/document-templates/{id} */ public function show(int $id): JsonResponse { return ApiResponse::handle(function () use ($id) { return $this->service->show($id); }, __('message.fetched')); } }