
<?php $__env->startSection('subtitle'); ?>
<?php echo $pageName; ?> Administration
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>

<div class="row">
    <div class="col-lg-12">
        <h1><?php echo $pageName; ?> <small>Administration</small></h1>
        <ol class="breadcrumb">
            <li>
                <i class="fa fa-dashboard"></i> Dashboard
            </li>
            <li class="active">
                <i class="icon-file-alt"></i> <?php echo $pageName; ?> 
            </li>
        </ol>
    </div>
</div><!-- /.row -->

<div class="row">
    <div class="col-lg-12">
        <table class="table tablesorter">
            <thead>
                <tr>
                    <th> Date <i class="fa fa-sort"></i></th>
                    <?php foreach ($games as $game): ?>
                    <th> <?php echo $game; ?> <i class="fa fa-sort"></i></th>
                    <?php endforeach; ?>
                    <th> Total <i class="fa fa-sort"></i></th>
                </tr>
            </thead>
            <tbody>
                <?php foreach($submissionsPerDay as $day => $submission): ?>
                <tr>
                    <td>
                        <?php echo $day; ?>
                    </td>
                    <?php $total = 0; ?>
                    <?php foreach ($games as $game): ?>
                        <td>
                            <?php if(isset($submission[$game])): ?>
                                <?php echo $submission[$game]; ?>
                                <?php $total += $submission[$game]; ?>
                            <?php else: ?>
                                0
                            <?php endif; ?>
                        </td>
                    <?php endforeach; ?>
                    <td>
                        <?php echo $total; ?>
                    </td>
                </tr>
                <?php endforeach; ?>
            </tbody>
        </table>
    </div>
</div><!-- /.row -->

<?php $__env->stopSection(); ?>

<?php $__env->startSection('page-scripts'); ?>

<script src="<?php echo asset('js/tablesorter/jquery.tablesorter.js'); ?>"></script>
<script src="<?php echo asset('js/tablesorter/tables.js'); ?>"></script>


<?php $__env->stopSection(); ?>

<?php echo $__env->make('admin.layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>