Ken 3 周之前
父節點
當前提交
3223b14177
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/Models/Bet.php

+ 1 - 1
app/Models/Bet.php

@@ -6,7 +6,7 @@ class Bet extends BaseModel
 {
     protected $table = 'bets';
     protected $fillable = ['issue_no', 'keywords', 'amount', 'odds', 'status', 'profit', 'issue_id', 'member_id', 'user_id'];
-
+    protected $hidden = [];
     const STATUS_STAY = 1;
     const STATUS_SETTLED = 2;
     const STATUS_CANCEL = 3;