DETAIL MATERIALS, SPARE PARTS AND SUPPLIES
<br>
<div class="form-group">
<label for="tablaDetalleMaterialEinsumo">
<div class='btn btn-success' id="btnNuevaDetalleMaterialEinsumo">Nueva</div>
</label>
<table class='table table-bordered table-hover' id="tablaDetalleMaterialEinsumo">
<tr>
<th>Detalles De Insumos</th>
<th>Unidad</th>
<th>Cantidad</th>
<th>Precio Unitario</th>
<th>Valor Total ($)</th>
<th>OPCION</th>
</tr>
<?php for($i=0; $i<sizeof($tabla1); ++$i) { ?>
<tr>
<td><input type="text" class="form-control" name="detalle_insumo[]" value=""></td>
<td><input type="text" class="form-control" name="unidad_insumo[]" value=""></td>
<td><input type="text" class="form-control" name="cantidad_insumo[]" value=""></td>
<td><input type="text" class="form-control" name="precio_unitario_insumo[]" value=""></td>
<td><input type="text" class="form-control" name="valor_total_insumo[]" value=""></td>
<td class="text-center">
<div class='btn btn-danger'>Eliminar</div>
</td>
</tr>
<?php } ?>