/home/dvjjulio/softtrash/resources/views/catalogo/table_peso.blade.php
<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>
          {{-- dd($peso_all) --}}
         @foreach( $peso_all as $peso )
             <tr>
                    <td class="text-center">{!! $peso->nombre_comercial !!}</td>
                    <td class="text-center">{!! $peso->mes !!}</td>
                    <td class="text-center">{!! $peso->cuota !!}</td>
                    <td class="text-center">{!! $peso->unidad !!}</td>
                    <td class="text-center">{!! $peso->peso !!}</td>
             </tr>
            @endforeach
        </tbody>
    </table>