Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class ="container">
        <div class="row">
                <div class="col-xs-12">
                        <h3> Today's call history</h3>
                        <table class = "table table-striped">
                                <tr>
                                        <th>Agent</th>
                                        <th>Total Call</th>
                                </tr>
                                
                                <?php foreach ($res as $rkey => $rval):?>
                                        <tr>
                                                <td><?php echo $rval['a']['name'];?></td>
                                                <td><?php echo $rval[0]['total'];?></td>
                                        </tr>
                                <?php endforeach;?>
                        </table>
                </div>
        </div>
</div>