<table class="table table-bordered table-striped tableOption" id="tabla{{ controlador }}">
    <thead>
        <tr>
            <th>foto</th>
            <th>Registro</th>
            <th>Identificación</th>
            <th>Nombre </th>
        </tr>
    </thead>
    <tbody>
        <?php foreach( $Asistentes as $Asistente ): ?>
            <tr>
                <td><img src="<?= URL_SICAM32.$Asistente->colaboradorFOTO ?>" style="width: 48px;" /></td>
                <td><?= $Asistente->participanteFCHREGISTRO ?></td>
                <td><?= $Asistente->personaIDENTIFICACION ?></td>
                <td><?= $Asistente->personaNOMBRES ?> <?= $Asistente->personaAPELLIDOS ?></td>
            </tr>
        <?php endforeach; ?>
    </tbody>
    <tfoot>
    </tfoot>
</table> 

<script>
    /*$(document).ready(function () {
        $('.tableOption').dataTable({
        "order": [[ 0, "desc" ]]
    } );
    });*/
    
</script>
