Ken 5 일 전
부모
커밋
23ca4a3c54
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      app/Http/Controllers/admin/Bet.php

+ 0 - 1
app/Http/Controllers/admin/Bet.php

@@ -27,7 +27,6 @@ class Bet extends Controller
                 'start_time' => ['nullable', 'date', 'date_format:Y-m-d', 'required_with:end_time'],
                 'end_time' => ['nullable', 'date', 'date_format:Y-m-d', 'required_with:start_time'],
                 'is_winner'=>['nullable','integer','in:0,1'],
-
             ]);
             $result = BetService::paginate($params);
         } catch (ValidationException $e) {