OwlCyberSecurity - MANAGER
Edit File: e009e7ac90baff5f26ce7c9c297813fb675def6d.php
<?php $__env->startSection('title'); ?> BETFORTE | ALL VIP PREDICTIONS <?php $__env->stopSection(); ?> <?php $__env->startSection('page'); ?> VIP Predictions <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <div class="col" style="min-height: 323px;;"> <br><br> <?php $date = new dateTime(); $d = $date->format('j F, Y'); ?> <?php echo e($allprediction->render()); ?> <table id="datatable" class="table table-striped table-bordered nowrap" cellspacing="0" width="100%"> <thead> <tr> <th>REL</th> <th>Match Date</th> <th>League</th> <th></th> <th class="red" style="background: #b1f10c; text-align: center"></th> <th></th> <?php /*<th>Draw Odd</th>*/ ?> <th>Presence</th> <th>Result</th> <th>Details</th> <th>Controls</th> </tr> </thead> <tbody> <?php $sn = 0; ?> <?php foreach($allprediction->all() as $prediction): ?> <?php $sn++; // $creator = App\System::find($prediction->creator); ?> <tr id="pred<?php echo e($prediction->id); ?>" <?php if($prediction->teamOneWon!=''): ?> style="background: lightgreen; color: darkgreen" <?php endif; ?>> <td class="red"><?php echo e($sn); ?></td> <td> <?php echo e($prediction->gameDate); ?> <br> <?php echo e($prediction->gameTime); ?> </td> <td><?php echo e($prediction->league); ?></td> <td><?php echo e($prediction->teamOne); ?></td> <td class="red" style="background: #b1f10c; text-align: center; font-weight: bold">VS</td> <td><?php echo e($prediction->teamTwo); ?></td> <?php /* <td><?php echo e($prediction->drawOdd); ?></td>*/ ?> <td> <div class="tags"> <small> <?php if($prediction->sure2Odds!='No'): ?> <span class="tag">2 Odds: <strong><?php echo e($prediction->sure2OddsTip); ?> - (<?php echo e($prediction->sure2OddsOdds); ?>)</strong> - <i class="text-danger"><?php echo e($prediction->sure2Odds); ?></span></i> <?php endif; ?> <?php if($prediction->sure3Odds!='No'): ?> <span class="tag">3 Odds: <strong><?php echo e($prediction->sure3OddsTip); ?> - (<?php echo e($prediction->sure3OddsOdds); ?>)</strong> - <i class="text-danger"><?php echo e($prediction->sure3Odds); ?></span></i> <?php endif; ?> <?php if($prediction->sure5Odds!='No'): ?> <span class="tag">5 Odds: <strong><?php echo e($prediction->sure5OddsTip); ?> - (<?php echo e($prediction->sure5OddsOdds); ?>)</strong> - <i class="text-danger"><?php echo e($prediction->sure5Odds); ?></span></i> <?php endif; ?> <?php if($prediction->forteSingle!='No'): ?> <span class="tag">Singles: <strong><?php echo e($prediction->forteSingleTip); ?> - (<?php echo e($prediction->forteSingleOdds); ?>)</strong> - <i class="text-danger"><?php echo e($prediction->forteSingle); ?></i></span> <?php endif; ?> <?php if($prediction->forteDouble!='No'): ?> <span class="tag">Doubles: <strong><?php echo e($prediction->forteDoubleTip); ?> - (<?php echo e($prediction->forteDoubleOdds); ?>)</strong> - <i class="text-danger"><?php echo e($prediction->forteDouble); ?></i></span> <?php endif; ?> <?php if($prediction->BTTS!=''): ?> <span class="tag">BTTS/GG: <strong> (<?php echo e($prediction->BTTSOdds); ?>)</strong> - <i class="text-danger"><?php echo e($prediction->BTTS); ?></i></span> <?php endif; ?> <?php if($prediction->HTFT!='No'): ?> <span class="tag">HT/FT: <strong><?php echo e($prediction->HTFT); ?> - (<?php echo e($prediction->HTFTOdds); ?>)</strong></span> <?php endif; ?> <?php if($prediction->over35Goals!=''): ?> <span class="tag">Over 3.5: <strong><?php echo e($prediction->over35Goals); ?> - (<?php echo e($prediction->over35GoalsOdds); ?>)</strong></span> <?php endif; ?> <?php if($prediction->weekend=='Yes'): ?> <span class="tag">Weekend: <strong><?php echo e($prediction->weekendTip); ?> - (<?php echo e($prediction->weekendOdds); ?>)</strong></span> <?php endif; ?> </small> </div> </td> <td><?php if($prediction->teamOneWon): ?> <?php echo e($prediction->teamOneScore); ?> : <?php echo e($prediction->teamTwoScore); ?> <?php endif; ?></td> <td><a class="gameview" href="" data-url="<?php echo e(route('/gamedetails')); ?>/<?php echo e($prediction->id); ?>/Prediction" data-target="#gamedetail" data-toggle="modal"><span style="color: green;"><span class="fa fa-eye"></span> VIEW</span></a></td> <td> <div class="btn-group"> <button type="button" class="btn btn-default btn-xs dropdown-toggle" data-toggle="dropdown"> Actions <span class="caret"></span> </button> <ul class="dropdown-menu pull-right" role="menu" style="background: whitesmoke; -webkit-box-shadow: inset 0px 0px 10px grey;-moz-box-shadow: inset 0px 0px 10px grey;box-shadow: inset 0px 0px 10px grey;"> <?php /*<li style="cursor: pointer;"><a style="color: red;" class="archiveGame" data-id="<?php echo e($prediction->id); ?>">ARCHIVE THIS</a>*/ ?> <li style="cursor: pointer;"><a class="updategame" data-in="Prediction" href="" data-url="<?php echo e(route('/updateVIPprediction')); ?>/<?php echo e($prediction->id); ?>/Prediction" data-target="#updategame" data-toggle="modal">EDIT/UPDATE</a> <li style="cursor: pointer;"><a class="addresult" href="" data-url="<?php echo e(route('/addresult')); ?>/<?php echo e($prediction->id); ?>" data-target="#addresult" data-toggle="modal">ADD RESULT & TESTIMONIAL</a> <?php if($prediction->display=='0'): ?> <li style="cursor: pointer;"><a class="hided" data-in="Prediction" href="" data-url="<?php echo e(route('/ajaxhide')); ?>/<?php echo e($prediction->id); ?>/Prediction" id="h<?php echo e($prediction->id); ?>">UNPUBLISH</a> <?php else: ?> <li style="cursor: pointer;"><a class="unhide" data-in="Prediction" href="" data-url="<?php echo e(route('/ajaxunhide')); ?>/<?php echo e($prediction->id); ?>/Prediction" id="h<?php echo e($prediction->id); ?>"><span style="color: green;">PUBLISH</span></a> <?php endif; ?> <li style="cursor: pointer;"><a class="gamedelete" data-in="Prediction" data-url="<?php echo e(route('/ajaxgamedelete')); ?>/<?php echo e($prediction->id); ?>/Prediction" data-id="" href="">DELETE</a> </li> </ul> </div> </td> </tr> <?php endforeach; ?> </tbody> </table> <?php echo e($allprediction->render()); ?> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>