Commit b50eeddd55d4db7c9b32d5ab77a6d61faf0293ce
1 parent
6394d9fd
Graduandos
Showing
1 changed file
with
2 additions
and
2 deletions
app/views/registrados.blade.php
... | ... | @@ -18,7 +18,7 @@ |
18 | 18 | <section id="contenido"> |
19 | 19 | <table class="table table-striped"> |
20 | 20 | <tr> |
21 | - <th>Número de Diplomas</th> | |
21 | + <!--<th>Número de Diplomas</th>--> | |
22 | 22 | <th>Cursos</th> |
23 | 23 | <!--<th>Documento</th> --> |
24 | 24 | <th>Nombres</th> |
... | ... | @@ -27,7 +27,7 @@ |
27 | 27 | </tr> |
28 | 28 | @foreach($asistentes as $asistente) |
29 | 29 | <tr> |
30 | - <td>{{$asistente->diplomas}} </td> | |
30 | + <!--<td>{{$asistente->diplomas}} </td>--> | |
31 | 31 | <td>{{ str_replace(',','<br />', $asistente->cursos ); }} </td> |
32 | 32 | <!--<td>{{$asistente->documento}}</td> --> |
33 | 33 | <td>{{$asistente->nombre}}</td> | ... | ... |