소스 검색

20220901 fix insertData function

LuluFJ.Ho 2 년 전
부모
커밋
d60d3c3b33
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      app/Http/Services/Web/SeminarSignUpService.php

+ 1
- 1
app/Http/Services/Web/SeminarSignUpService.php 파일 보기

@@ -62,7 +62,7 @@ class SeminarSignUpService
62 62
             ->where('trackNo', '=', $trackNo)
63 63
             ->first();
64 64
         
65
-        if ($limit->trackLimit>$nowCount) {
65
+        if ($limit['trackLimit']>$nowCount) {
66 66
             return true;
67 67
         } else {
68 68
             return false;