<table id="table_peso" class="table table-hover">
<thead>
<tr class="filters">
<th class="text-center"><input type="text" class="form-control text-center" placeholder="Cliente" disabled></th>
<th class="text-center"><input type="text" class="form-control text-center" placeholder="Mes" disabled></th>
<th class="text-center"><input type="text" class="form-control text-center" placeholder="Couta" disabled></th>
<th class="text-center"><input type="text" class="form-control text-center" placeholder="Unidad" disabled></th>
<th class="text-center"><input type="text" class="form-control text-center" placeholder="Peso" disabled></th>
</tr>
</thead>
<tbody>
<?php /* dd($peso_all) */ ?>
<?php foreach( $peso_all as $peso ): ?>
<tr>
<td class="text-center"><?php echo $peso->nombre_comercial; ?></td>
<td class="text-center"><?php echo $peso->mes; ?></td>
<td class="text-center"><?php echo $peso->cuota; ?></td>
<td class="text-center"><?php echo $peso->unidad; ?></td>
<td class="text-center"><?php echo $peso->peso; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>