
<?php $__env->startSection('subtitle'); ?>
Game Administration
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>

<div class="row">
    <div class="col-lg-12">
        <h1>Game <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> Games
            </li>
        </ol>
    </div>
</div><!-- /.row -->

<div class="row">
    <div class="col-lg-12">
        <table class="table tablesorter">
            <thead>
                <tr>
                    <th> ID <i class="fa fa-sort"></i></th>
                    <th> Live </th>
                    <th> Thumb URL </th>
                    <th> Short Name <i class="fa fa-sort"></i></th>
                    <th> Created at <i class="fa fa-sort"></i></th>
                    <th> Updated at <i class="fa fa-sort"></i></th>
                    <th> Actions </th>
                </tr>
            </thead>
            <tbody>
                <?php foreach($games as $game): ?>
                <tr>
                    <td>
                        <a href="<?php echo action('GameController@show', array('id' => $game -> id)); ?>">
                            <?php echo $game -> id; ?>
                        </a>
                    </td>
                    <td>
                        <?php echo $game -> live; ?>
                    </td>
                    <td style="width: 10%">
                        <a href="<?php echo asset($game -> thumb_url); ?>"><img style="width: 100%" src="<?php echo asset($game -> thumb_url); ?>" alt="" /></a>
                    </td>
                    <td>
                        <?php echo $game -> short_name; ?>
                    </td>
                    <td>
                        <?php echo $game -> created_at; ?>
                    </td>
                    <td>
                        <?php echo $game -> updated_at; ?>
                    </td>
                    <td>
                        <a href="<?php echo action('GameController@edit', array('id' => $game -> id)); ?>" class="btn btn-default">
                            <span class="glyphicon glyphicon-pencil"></span>
                        </a>
                        &nbsp;
                        <a href="<?php echo route('gameDelete', array('id' => $game -> id) ); ?>" class="btn btn-danger">
                            <span class="glyphicon glyphicon-trash"></span>
                        </a>
                    </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(); ?>