<div>
    <table id="tbl-menber" class="table table-bordered">
        <thead>
            <tr class="bg-primary">
            <th>Nombre</th>
            <th>Apellido</th>
            <th>Relación</th>
        </tr>
        </thead>
        <tbody>
        <?php foreach($guardians as $grd): ?>
        <tr>
            <td class="text-muted"><?php echo $grd->first_name_grd; ?></td>
            <td class="text-muted"><?php echo $grd->last_name_grd; ?></td>

            <td class="text-muted">Representante</td>
        </tr>
        <?php endforeach; ?>
        <?php foreach($students as $std): ?>
        <tr>
            <td class="text-muted"><?php echo $std->first_name_std; ?></td>
            <td class="text-muted"><?php echo $std->last_name_std; ?></td>
            <td class="text-muted">Estudiante</td>
        </tr>
        <?php endforeach; ?>
        </tbody>
    </table>
</div>
<?php echo HTML::script('js/family/list_menber.js'); ?>