HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/8.0.30
System: Linux multiplicar 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64
User: root (0)
PHP: 8.0.30
Disabled: NONE
Upload Files
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>