File: /var/www/html/xfacil.desafio.com.py/resources/views/livewire/cargarsolicitud.blade.php
<div>
<table class="table table-bordered" id="example2" style="background-color:white;">
<thead>
<tr>
<th>Items</th>
<th>Monedas</th>
<th>Acciones</th>
</tr>
</thead>
<tbody>
@foreach($productos as $value)
<tr>
<td>{{ $value->nombre }}</td>
<td>{{ $value->monedas }}</td>
<td>
@if($value->estado == 1)
<button type="button" class="btn btn-outline-info" wire:click="cambiar({{ $value->id }})">Sin seguimiento</button>
@elseif($value->estado == 2)
<button type="button" class="btn btn-outline-warning" wire:click="cambiar({{ $value->id }})">Aprobado</button>
@elseif($value->estado == 3)
<button type="button" class="btn btn-outline-success" wire:click="cambiar({{ $value->id }})">Entregado</button>
@elseif($value->estado == 4)
<button type="button" class="btn btn-outline-danger" wire:click="cambiar({{ $value->id }})">Sin stock</button>
@endif
</td>
</tr>
@endforeach
</tbody>
</table>
</div>