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/votoExcel.blade.php

<table>
    <thead>
    <tr>
        <th style="text-align: center;">VOTACIÓN</th>
        <td>{{$tema->votacion}}</td>
    </tr>
    </thead>
</table>

<table>
    <thead>
    <tr>
        <th style="text-align: center;">No.</th>
        <th style="text-align: center;">DIPUTADO</th>
        <th style="text-align: center;">SENTIDO DEL VOTO</th>
    </tr>
    </thead>
    <tbody>
        @if(count($votos))
            @php $int = 1; @endphp
            @foreach($votos as $voto)
                <tr>
                    <td style="text-align: center;">{{$int}}</td>
                    <td style="text-align: center;">{{$voto->parlamentario->nombre_completo}}</td>
                    <td style="text-align: center;">{{$voto->mensaje}}</td>
                </tr>
                @php $int = $int+1; @endphp
            @endforeach
        @else
            <tr>
                <td colspan="8">NO TIENE REGISTROS</td>
            </tr>
        @endif
    </tbody>
</table>


OHA YOOOO