Commit 6394d9fd846df9573103dc7e15ecadb182eaad20
1 parent
67896bfd
orde de llegada
Showing
1 changed file
with
6 additions
and
6 deletions
app/views/registrados.blade.php
... | ... | @@ -20,19 +20,19 @@ |
20 | 20 | <tr> |
21 | 21 | <th>Número de Diplomas</th> |
22 | 22 | <th>Cursos</th> |
23 | - <th>Documento</th> | |
24 | - <th>Apellidos</th> | |
23 | + <!--<th>Documento</th> --> | |
25 | 24 | <th>Nombres</th> |
26 | - <th>Correo</th> | |
25 | + <th>Apellidos</th> | |
26 | + <!--<th>Correo</th>--> | |
27 | 27 | </tr> |
28 | 28 | @foreach($asistentes as $asistente) |
29 | 29 | <tr> |
30 | 30 | <td>{{$asistente->diplomas}} </td> |
31 | 31 | <td>{{ str_replace(',','<br />', $asistente->cursos ); }} </td> |
32 | - <td>{{$asistente->documento}}</td> | |
33 | - <td>{{$asistente->apellidos}}</td> | |
32 | + <!--<td>{{$asistente->documento}}</td> --> | |
34 | 33 | <td>{{$asistente->nombre}}</td> |
35 | - <td>{{$asistente->correo}}</td> | |
34 | + <td>{{$asistente->apellidos}}</td> | |
35 | + <!--<td>{{$asistente->correo}}</td>--> | |
36 | 36 | </tr> |
37 | 37 | @endforeach |
38 | 38 | </table> | ... | ... |