File: /var/www/html/xfacil.desafio.com.py/resources/views/livewire/control.blade.php
<div>
<div class="card">
<div class="card-header">
<div class="col-12">
<div class="form-group">
<input wire:model="buscar" type="search" class="form-control" placeholder="Buscar" />
</div>
</div>
</div>
<div class="card-body table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>Colaborador</th>
<th>Desafios Logrados</th>
<th>Monedas</th>
</tr>
</thead>
<tbody>
@foreach($control as $value)
<tr>
<td>{{ $value->name }}</td>
<td>{{ $value->totaldesafios }}</td>
<td>{{ $value->totalmonedas }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>