|
|
@ -56,7 +56,11 @@ |
|
|
|
<tr> |
|
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">ID</th> |
|
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Nombre</th> |
|
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Acciones</th> |
|
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Teléfono</th> |
|
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Correo</th> |
|
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Tipo de Licencia</th> |
|
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Materia</th> |
|
|
|
|
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
<tbody class="bg-white divide-y divide-gray-200"> |
|
|
@ -67,6 +71,10 @@ |
|
|
|
<i class="fas fa-user text-blue-500 mr-2"></i> |
|
|
|
{{ $docente->nombre }} |
|
|
|
</td> |
|
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm">{{ $docente->telefono }}</td> |
|
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm">{{ $docente->correo }}</td> |
|
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm">{{ $docente->tipo_licencia }}</td> |
|
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm">{{ $docente->materia }}</td> |
|
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm"> |
|
|
|
<div class="flex gap-2"> |
|
|
|
<a href="#" |
|
|
|