MINI MINI MANI MO

Path : /var/www/html/sistemas/spid/resources/views/votaciones/
File Upload :
Current File : /var/www/html/sistemas/spid/resources/views/votaciones/asistenciaExcel.blade.php

<table>
    <thead>
    <tr>
        <th style="text-align: center;">Nombre(s)</th>
        <th style="text-align: center;">Primer Apellido</th>
        <th style="text-align: center;">Segundo Apellido</th>
        <th style="text-align: center;">Cargo</th>
        <th style="text-align: center;">Grupo parlamentario</th>
    </tr>
    </thead>
    <tbody>
    @if(count($asistencias))
        @foreach($asistencias as $asiste)
            @if($asiste->mensaje == 'ASISTENCIA')
            <tr>
{{--                <td style="text-align: center;">{{$int}}</td>--}}
                <td style="text-align: center;">{{$asiste->parlamentario->nombre}}</td>
                <td style="text-align: center;">{{$asiste->parlamentario->ap_pat}}</td>
                <td style="text-align: center;">{{$asiste->parlamentario->ap_mat}}</td>
                <td style="text-align: center;">Diputado</td>
                <td style="text-align: center;">{{$asiste->parlamentario->g_parlamentario}}</td>
            </tr>
            @endif
        @endforeach
    @else
        <tr>
            <td colspan="8">NO TIENE REGISTROS</td>
        </tr>
    @endif
    </tbody>
</table>

OHA YOOOO