|
|
@ -29,7 +29,7 @@ |
|
|
|
<thead class="bg-gray-50"> |
|
|
|
<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">Cantidad</th> |
|
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Capacidad</th> |
|
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Acciones</th> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
@ -37,7 +37,7 @@ |
|
|
|
@foreach($capacidades as $capacidad) |
|
|
|
<tr class="hover:bg-gray-50"> |
|
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">{{ $capacidad->id }}</td> |
|
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900">{{ $capacidad->cantidad }}</td> |
|
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900">{{ $capacidad->capacidad }}</td> |
|
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm"> |
|
|
|
<div class="flex gap-2"> |
|
|
|
<a href="{{ route('capacidades.edit', $capacidad->id) }}" |
|
|
|