</div>
                                <div class="panel-body">
                                    <div class="table-responsive">
                                        <table class="table table-striped table-bordered table-hover">
                                            <thead>
                                                <tr>
                                                    <th>#</th>
                                                    <th>Id</th>
                                                    <th>Name</th>
                                                    <th>Email</th>
                                                    <th>Company</th>
                                                </tr>
                                            </thead>
                                            <tbody>
                                                <?php 
    $data = $admin->getRecentSession();
    $i = 1;
    foreach ($data as $value) {
        ?>
                                                    <tr>
                                                        <td><?php 
        echo $i;
        ?>
</td>
                                                        <td><?php 
        echo $value['grcid'];
        ?>
</td>
                                                        <td><?php 
        echo $value['name'];
        ?>