OwlCyberSecurity - MANAGER
Edit File: 9b11b369bb04773cf6433868ae5507340e55d43c.php
<div class="row"> <div class="col-md-6"> <?php $g11 = substr($game->teamOneForm, 0, 1); $g12 = substr($game->teamOneForm, 1, 1); $g13 = substr($game->teamOneForm, 2, 1); $g14 = substr($game->teamOneForm, 3, 1); $g15 = substr($game->teamOneForm, 4, 1); $g21 = substr($game->teamTwoForm, 0, 1); $g22 = substr($game->teamTwoForm, 1, 1); $g23 = substr($game->teamTwoForm, 2, 1); $g24 = substr($game->teamTwoForm, 3, 1); $g25 = substr($game->teamTwoForm, 4, 1); ?> <style> .class1{color: white; background: green; padding: 3px 8px; border-radius: 100px; font-weight: bold;} .class2{color: green; background: yellow; padding: 4px 10px; border-radius: 100px; font-weight: bold;} .class3{color: white; background: red; padding: 3px 10px; border-radius: 100px; font-weight: bold;} .cont{margin-bottom: 0px; margin-top: 0px; text-align: center;} </style> <table class="table"> <tr> <td><h3 class="cont"><?php echo e($game->teamOne); ?></h3></td> <td rowspan="3" style="background: #b1f10c; color: red; text-align: center" valign="bottom">VS</td> <td><h3 class="cont"><?php echo e($game->teamTwo); ?></h3></td> </tr> <tr> <td> <?php if($g11=='W'): ?> <span class="class1"><?php echo e($g11); ?></span> <?php elseif($g11=='D'): ?> <span class="class2"><?php echo e($g11); ?></span> <?php else: ?> <span class="class3"><?php echo e($g11); ?></span> <?php endif; ?> <?php if($g12=='W'): ?> <span class="class1"><?php echo e($g12); ?></span> <?php elseif($g12=='D'): ?> <span class="class2"><?php echo e($g12); ?></span> <?php else: ?> <span class="class3"><?php echo e($g12); ?></span> <?php endif; ?> <?php if($g13=='W'): ?> <span class="class1"><?php echo e($g13); ?></span> <?php elseif($g13=='D'): ?> <span class="class2"><?php echo e($g13); ?></span> <?php else: ?> <span class="class3"><?php echo e($g13); ?></span> <?php endif; ?> <?php if($g14=='W'): ?> <span class="class1"><?php echo e($g14); ?></span> <?php elseif($g14=='D'): ?> <span class="class2"><?php echo e($g14); ?></span> <?php else: ?> <span class="class3"><?php echo e($g14); ?></span> <?php endif; ?> <?php if($g15=='W'): ?> <span class="class1"><?php echo e($g15); ?></span> <?php elseif($g15=='D'): ?> <span class="class2"><?php echo e($g15); ?></span> <?php else: ?> <span class="class3"><?php echo e($g15); ?></span> <?php endif; ?> </td> <td> <?php if($g21=='W'): ?> <span class="class1"><?php echo e($g21); ?></span> <?php elseif($g21=='D'): ?> <span class="class2"><?php echo e($g21); ?></span> <?php else: ?> <span class="class3"><?php echo e($g21); ?></span> <?php endif; ?> <?php if($g22=='W'): ?> <span class="class1"><?php echo e($g22); ?></span> <?php elseif($g22=='D'): ?> <span class="class2"><?php echo e($g22); ?></span> <?php else: ?> <span class="class3"><?php echo e($g22); ?></span> <?php endif; ?> <?php if($g23=='W'): ?> <span class="class1"><?php echo e($g23); ?></span> <?php elseif($g23=='D'): ?> <span class="class2"><?php echo e($g23); ?></span> <?php else: ?> <span class="class3"><?php echo e($g23); ?></span> <?php endif; ?> <?php if($g24=='W'): ?> <span class="class1"><?php echo e($g24); ?></span> <?php elseif($g24=='D'): ?> <span class="class2"><?php echo e($g24); ?></span> <?php else: ?> <span class="class3"><?php echo e($g24); ?></span> <?php endif; ?> <?php if($g25=='W'): ?> <span class="class1"><?php echo e($g25); ?></span> <?php elseif($g25=='D'): ?> <span class="class2"><?php echo e($g25); ?></span> <?php else: ?> <span class="class3"><?php echo e($g25); ?></span> <?php endif; ?> </td> </tr> <tr> <td style="font-size: 120%;"><strong>ODDS: </strong><?php echo e($game->teamOneOdds); ?></td> <td style="font-size: 120%;"><strong>ODDS: </strong><?php echo e($game->teamTwoOdds); ?></td> </tr> <?php if($game->teamOneWon==''): ?> <tr> <td colspan="3" style="background: #b1f10c; color: red; text-align: center"><center>RESULT NOT YET ADDED</center></td> </tr> <?php else: ?> <tr> <td style="background: #b1f10c; color: red;"><b>Score: </b> <?php echo e($game->teamOneScore); ?></td> <td style="background: #b1f10c; color: red;"><center></center></td> <td style="background: #b1f10c; color: red;"><b>Score: </b> <?php echo e($game->teamTwoScore); ?></td> </tr> <?php endif; ?> <?php if($game->cornerStatus=='1'): ?> <tr> <th>Corner Result</th> <td></td> <td><?php echo e($game->cornerResult); ?></td> </tr> <?php endif; ?> </table> <hr> <table class="table table-striped"> <tr> <th>DRAW ODD</th> <td><?php echo e($game->drawOdd); ?></td> </tr> <tr> <th>FREE PUNTER'S TIP</th> <td><?php echo e($game->punterPick); ?></td> </tr> <tr> <th>UPCOMING PREDICTION</th> <td><?php echo e($game->upcomingGame); ?></td> </tr> <tr> <th>FULL-TIME RECOMMEND.</th> <td><?php echo e($game->FTRecommendation); ?></td> </tr> <tr> <th>REGULAR TIPS</th> <td><?php echo e($game->regularTips); ?> <?php if($game->regularTips=='Yes'): ?> (<?php echo e($game->regularTipsValue); ?> - <?php echo e($game->regularTipsOdd); ?> Odd) <?php endif; ?></td> </tr> <tr> <th>CUSTOM TIPS</th> <td><?php echo e($game->customTips); ?> <?php if($game->customTips=='Yes'): ?> (<?php echo e($game->customTipsValue); ?> - <?php echo e($game->customTipsOdd); ?> Odd) <?php endif; ?></td> </tr> <tr> <th>WEEKEND TIPS</th> <td><?php echo e($game->weekendTips); ?> <?php if($game->weekendTips=='Yes'): ?> (<?php echo e($game->weekendTipsValue); ?> - <?php echo e($game->weekendTipsOdd); ?> Odd) <?php endif; ?></td> </tr> </table> </div> <div class="col-md-6"> <table class="table table-striped"> <?php /*<tr> <th>ACTUAL POINT</th> <td><?php echo e($game->actualPoint); ?></td> </tr>*/ ?> <tr> <th>OVER 1.5 GOALS</th> <td><?php echo e($game->oneFiveGoals); ?></td> </tr> <tr> <th>DOUBLE CHANCE</th> <td><?php echo e($game->doubleChance); ?></td> </tr> <tr> <th>OVER/UNDER 2.5 GOALS</th> <td><?php echo e($game->twoFiveGoals); ?></td> </tr> <tr> <th>HALFTIME RESULTS</th> <td><?php echo e($game->HTResults); ?></td> </tr> <tr> <th>OVER 0.5 GOALS HT</th> <td><?php echo e($game->overZeroFiveHT); ?></td> </tr> <tr> <th>UNDER 1.5 GOALS HT</th> <td><?php echo e($game->underOneFiveHT); ?></td> </tr> <tr> <th>BTTS/GG</th> <td><?php echo e($game->BTTS); ?></td> </tr> <tr> <th>HALTIME/FULLTIME TIPS</th> <td><?php echo e($game->HTFT); ?></td> </tr> <tr> <th>MATCH CORNERS</th> <td><?php echo e($game->matchCorners); ?></td> </tr> <tr> <th>FULLTIME DRAW</th> <td><?php echo e($game->fullTimeDraw); ?></td> </tr> <tr> <th>HOME/AWAY TO SCORE</th> <td><?php echo e($game->homeAwayScore); ?></td> </tr> <tr> <th>DRAW NO BET</th> <td><?php echo e($game->drawNoBet); ?></td> </tr> <tr> <th>TESTIMONIAL</th> <td><?php echo e($game->testimonialValue); ?></td> </tr> </table> </div> </div>