
        <div class="row">
            <div class="col-md-12">
            <table class="table table-bordered datatable">
                <thead>
                <tr>
                    <th width="10%">Type</th>
                    <th width="30%">Description</th>
                    <th width="30%">Period</th>
                    <th width="15%">Amount</th>
                    <th width="15%">Date</th>
                </tr>
                </thead>
                <tbody>
                <?php $totalSecond = $totalcost = 0;?>
                <?php if(count($UnbilledResult)): ?>
                    <?php foreach($UnbilledResult as $UnbilledResultRaw): ?>
                        <tr>
                            <td><?php echo $UnbilledResultRaw->Type; ?></td>
                            <td><?php echo $UnbilledResultRaw->Description; ?></td>
                            <td><?php echo $UnbilledResultRaw->Period; ?></td>
                            <td><?php echo $CurrencySymbol.$UnbilledResultRaw->Amount; ?></td>
                            <td><?php echo $UnbilledResultRaw->IssueDate; ?></td>
                        </tr>
                    <?php endforeach; ?>
                <?php else: ?>
                    <tr>
                        <td colspan="3">No Data</td>
                    </tr>
                <?php endif; ?>
                </tbody>
            </table>
        </div>
        </div>