middleware('auth:sanctum'); $this->roleAllow(UserRole::NORMAL_ADMIN); } protected function getParam(): IParam { return $this->param; } protected function run(Request $request): JsonResponse { $param = $this->param; $this->manager->init() ->fill($param->toArray()) ->create(); return $this->successResponse(); } }