OwlCyberSecurity - MANAGER
Edit File: 70a06f95f2edcadc7ae1e43916e607e920c06815.php
<form action="<?php echo e(route('/ajaxGameUpdate')); ?>/<?php echo e($game->id); ?>/<?php echo e($datain); ?>" method="POST" id="updateForm"> <div class="container-fluid"> <div class="col-xs-12"> <div class="col-md-5 col-xs-12" style="background: whitesmoke; padding: 15px;"> <div class="form-group col-xs-12"> <input type="text" name="teamOne" class="form-control" placeholder="TEAM ONE *" value="<?php echo e($game->teamOne); ?>" required> </div> <div class="form-group col-md-6 col-xs-12"> <label for="team1odd">FORM</label> <input type="text" name="teamOneForm" placeholder="eg. WWWLD" class="form-control" value="<?php echo e($game->teamOneForm); ?>" maxlength="5"> </div> <div class="form-group col-md-6 col-xs-12"> <label for="team1odd">ODDS</label> <input type="text" name="teamOneOdds" placeholder="eg. 1.5" class="form-control" value="<?php echo e($game->teamOneOdds); ?>"> </div> </div> <div class="col-md-2 col-xs-12" style="margin: 10px 0px; background: grey; border-radius: 0px 0px 8px 8px;"><center><span style="padding: 5px 10px; background: grey; color: white; border-radius: 100px; margin-top: -30px;">VS</span></center> <br> <?php /*<div class="form-group">*/ ?> <?php /*<input class="form-control" name="drawOdd" type="text" value="<?php echo e($game->drawOdd); ?>" placeholder="DRAW ODD">*/ ?> <?php /*</div>*/ ?> <div class="form-group"> <input class="form-control" name="gameDate" id="matchdate" type="text" placeholder="MATCH DATE *" value="<?php echo e($game->gameDate); ?>" required> </div> <div class="form-group"> <input class="form-control" name="gameTime" id="matchtime" type="text" placeholder="MATCH TIME *" value="<?php echo e($game->gameTime); ?>" required> </div> <div class="form-group"> <select name="league" class="form-control select2" required> <?php foreach($allleagues->all() as $leagues): ?> <option value="<?php echo e($leagues->code); ?>" <?php if($game->league==$leagues->code): ?> selected <?php endif; ?>><?php echo e($leagues->code); ?></option> <?php endforeach; ?> </select> </div> </div> <div class="col-md-5 col-xs-12" style="background: whitesmoke; padding: 15px;"> <div class="form-group col-xs-12"> <input type="text" name="teamTwo" class="form-control" placeholder="TEAM TWO *" value="<?php echo e($game->teamTwo); ?>" required> </div> <div class="form-group col-md-6 col-xs-12"> <label for="team1odd">FORM</label> <input type="text" name="teamTwoForm" placeholder="eg. WWWLD" class="form-control" value="<?php echo e($game->teamTwoForm); ?>" maxlength="5"> </div> <div class="form-group col-md-6 col-xs-12"> <label for="team1odd">ODDS</label> <input type="text" name="teamTwoOdds" placeholder="eg. 1.5" class="form-control" value="<?php echo e($game->teamTwoOdds); ?>"> </div> </div> </div> </div> <hr> <div class="container-fluid"> <div class="form-group col-md-4"> <label>FREE PUNTER'S TIP</label> <select name="punterPick" class="form-control"> <option value="Yes" <?php if($game->punterPick=='Yes'): ?> selected <?php endif; ?>>Yes</option> <option value="No" <?php if($game->punterPick=='No'): ?> selected <?php endif; ?>>No</option> </select> <small class="text-danger">If YES, this game will show on homepage under Free Punter's Picks</small> </div> <div class="form-group col-md-4"> <label>UPCOMING PREDICTION?</label> <select name="upcomingGame" class="form-control"> <option value="Yes" <?php if($game->upcomingGame=='Yes'): ?> selected <?php endif; ?>>Yes</option> <option value="No" <?php if($game->upcomingGame=='No'): ?> selected <?php endif; ?>>No</option> </select> <small class="text-danger">If YES, this game will show on homepage under Upcoming Games</small> </div> <div class="form-group col-md-4"> <label>FULL TIME RECOMMENDATION</label> <input type="text" name="FTRecommendation" class="form-control" value="<?php echo e($game->FTRecommendation); ?>"> <small class="text-danger">Value here will show for Free Pick & Upcoming Game on homepage</small> </div> <?php /*<div class="form-group col-md-4">*/ ?> <?php /*<label>ACTUAL POINT/ODD</label>*/ ?> <?php /*<input type="text" name="actualPoint" class="form-control" value="<?php echo e($game->actualPoint); ?>">*/ ?> <?php /*</div>*/ ?> <div class="form-group col-md-4"> <label>OVER 1.5 GOALS</label> <select name="oneFiveGoals" class="form-control"> <option value="None" <?php if($game->oneFiveGoals=='None'): ?> selected <?php endif; ?>>*-*-*-*-*-*-*-*-*-*</option> <option value="Over 1.5" <?php if($game->oneFiveGoals=='Over 1.5'): ?> selected <?php endif; ?>>Over 1.5</option> <option value="Under 1.5" <?php if($game->oneFiveGoals=='Under 1.5'): ?> selected <?php endif; ?>>Under 1.5</option> </select> </div> <div class="form-group col-md-4"> <label>DOUBLE CHANCE</label> <select name="doubleChance" class="form-control"> <option value="None" <?php if($game->doubleChance=='None'): ?> selected <?php endif; ?>>*-*-*-*-*-*-*-*-*-*</option> <option value="1X" <?php if($game->doubleChance=='1X'): ?> selected <?php endif; ?>>1X</option> <option value="12" <?php if($game->doubleChance=='12'): ?> selected <?php endif; ?>>12</option> <option value="2X" <?php if($game->doubleChance=='2X'): ?> selected <?php endif; ?>>2X</option> </select> </div> <div class="form-group col-md-4"> <label>OVER/UNDER 2.5 GOALS</label> <select name="twoFiveGoals" class="form-control"> <option value="None" <?php if($game->twoFiveGoals=='None'): ?> selected <?php endif; ?>>*-*-*-*-*-*-*-*-*-*</option> <option value="Over 2.5" <?php if($game->twoFiveGoals=='Over 2.5'): ?> selected <?php endif; ?>>Over 2.5</option> <option value="Under 2.5" <?php if($game->twoFiveGoals=='Under 2.5'): ?> selected <?php endif; ?>>Under 2.5</option> </select> </div> <div class="form-group col-md-4"> <label>HALFTIME RESULTS</label> <select name="HTResults" class="form-control"> <option value="None" <?php if($game->HTResults=='None'): ?> selected <?php endif; ?>>*-*-*-*-*-*-*-*-*-*</option> <option value="1" <?php if($game->HTResults=='1'): ?> selected <?php endif; ?>>1</option> <option value="2" <?php if($game->HTResults=='2'): ?> selected <?php endif; ?>>2</option> <option value="X" <?php if($game->HTResults=='X'): ?> selected <?php endif; ?>>X</option> <option value="12" <?php if($game->HTResults=='12'): ?> selected <?php endif; ?>>12</option> </select> </div> <div class="form-group col-md-4"> <label>OVER 0.5 GOALS HT</label> <select name="overZeroFiveHT" class="form-control"> <option value="None" <?php if($game->overZeroFiveHT=='None'): ?> selected <?php endif; ?>>*-*-*-*-*-*-*-*-*-*</option> <option value="Over 0.5" <?php if($game->overZeroFiveHT=='Over 0.5'): ?> selected <?php endif; ?>>Over 0.5</option> <option value="Under 0.5" <?php if($game->overZeroFiveHT=='Under 0.5'): ?> selected <?php endif; ?>>Under 0.5</option> </select> </div> <div class="form-group col-md-4"> <label>UNDER 1.5 GOALS HT</label> <select name="underOneFiveHT" class="form-control"> <option value="None" <?php if($game->underOneFiveHT=='None'): ?> selected <?php endif; ?>>*-*-*-*-*-*-*-*-*-*</option> <option value="Under 1.5" <?php if($game->underOneFiveHT=='Under 1.5'): ?> selected <?php endif; ?>>Under 1.5</option> <option value="Over 1.5" <?php if($game->underOneFiveHT=='Over 1.5'): ?> selected <?php endif; ?>>Over 1.5</option> </select> </div> <div class="form-group col-md-4"> <label>BTTS/GG</label> <select name="BTTS" class="form-control"> <option value="BTTS/GG" <?php if($game->BTTS=='BTTS/GG'): ?> selected <?php endif; ?>>BTTS/GG</option> <option value="No" <?php if($game->BTTS=='No'): ?> selected <?php endif; ?>>No</option> </select> </div> <div class="form-group col-md-4"> <label>HALTIME/FULLTIME</label> <select name="HTFT" class="form-control"> <option value="None">*-*-*-*-*-*-*-*-*-*</option> <option value="1/1" <?php if($game->HTFT=='1/1'): ?> selected <?php endif; ?>>1/1</option> <option value="1/X" <?php if($game->HTFT=='1/X'): ?> selected <?php endif; ?>>1/X</option> <option value="1/2" <?php if($game->HTFT=='1/2'): ?> selected <?php endif; ?>>1/2</option> <option value="X/1" <?php if($game->HTFT=='X/1'): ?> selected <?php endif; ?>>X/1</option> <option value="X/2" <?php if($game->HTFT=='X/2'): ?> selected <?php endif; ?>>X/2</option> <option value="X/X" <?php if($game->HTFT=='X/X'): ?> selected <?php endif; ?>>X/X</option> <option value="2/1" <?php if($game->HTFT=='2/1'): ?> selected <?php endif; ?>>2/1</option> <option value="2/2" <?php if($game->HTFT=='2/2'): ?> selected <?php endif; ?>>2/2</option> <option value="2/X" <?php if($game->HTFT=='2/X'): ?> selected <?php endif; ?>>2/X</option> </select> </div> <div class="form-group col-md-4"> <label>MATCH CORNERS</label> <input type="text" name="matchCorners" class="form-control" placeholder="leave blank if nothing" value="<?php echo e($game->matchCorners); ?>"> </div> <div class="form-group col-md-4"> <label>FULLTIME DRAW</label> <select name="fullTimeDraw" class="form-control"> <option value="Yes" <?php if($game->fullTimeDraw=='Yes'): ?> selected <?php endif; ?>>Yes</option> <option value="None" <?php if($game->fullTimeDraw=='None'): ?> selected <?php endif; ?>>*-*-*-*-*-*-*-*-*-*</option> </select> </div> <div class="form-group col-md-4"> <label>HOME/AWAY TO SCORE</label> <select name="homeAwayScore" class="form-control"> <option value="Home To Score" <?php if($game->homeAwayScore=='Home To Score'): ?> selected <?php endif; ?>>Home To Score</option> <option value="Away To Score" <?php if($game->homeAwayScore=='Away To Score'): ?> selected <?php endif; ?>>Away To Score</option> <option value="None" <?php if($game->homeAwayScore=='None'): ?> selected <?php endif; ?>>*-*-*-*-*-*-*-*-*-*</option> </select> </div> <div class="form-group col-md-4"> <label>DRAW NO BET</label> <select name="drawNoBet" class="form-control"> <option value="1 DNB" <?php if($game->drawNoBet=='1 DNB'): ?> selected <?php endif; ?>>1 DNB</option> <option value="2 DNB" <?php if($game->drawNoBet=='2 DNB'): ?> selected <?php endif; ?>>2 DNB</option> <option value="None" <?php if($game->drawNoBet=='None'): ?> selected <?php endif; ?>>*-*-*-*-*-*-*-*-*-*</option> </select> </div> <?php echo csrf_field(); ?> <div id="settingstatus" class="col-xs-6"></div> <div class="form-group col-sm-12"> <button class="btn btn-md btn-success" name="submit" id="submitsetting">UPDATE PREDICTION</button> </div> </div> </form> <script> $.ajaxSetup({ headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') } }); $(document).ready(function () { $('#updateForm').submit(function (e) { e.preventDefault(); $('#submitsetting').prop('disabled', true).html("UPDATING PREDICTION"); var url = $(this).attr('action'); var dataString = $(this).serialize(); console.log(dataString); $.ajax({ type: "POST", url: url, data: dataString, dataType: "JSON", success: function(data){ if (data.status == 1) { $('#submitsetting').prop('disabled', false).html("UPDATE PREDICTION"); swal(data.encounters, '', 'warning'); } else{ swal(data.encounters, '', 'success'); $('#updategame').modal('hide'); } } }); }); }); </script>