Browse Source

20220901 fix insertData function

LuluFJ.Ho 2 years ago
parent
commit
d60d3c3b33
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      app/Http/Services/Web/SeminarSignUpService.php

+ 1
- 1
app/Http/Services/Web/SeminarSignUpService.php View File

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