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/missolicitudes.blade.php
<div>
    <div class="row">
	    <div class="col-md-12" align="center" ><br><br>
	  		<h1 style="font-family:  Aldo the Apache;font-size: 5vw;">MIS SOLICITUDES</h1>
		</div>
		<div class="col-md-12" style="background-color: white;border-radius: 10px;padding: 10px;">
			<table class="table">
				<thead class="thead-dark">
					<tr>
						<th scope="col">Nº</th>
						<th scope="col">Descripción</th>
						<th scope="col">Fecha de pedido</th>
						<th scope="col">Monedas</th>
						<th scope="col">Estado</th>
					</tr>
				</thead> 
				<tbody>
					@php
						$contador=1;
					@endphp
					@foreach($solicitudes as $element)
						<tr>
							<th scope="row">{{ $contador }}</th>
							<td>{{ $element->nombre }}</td>
							<td>{{ $element->created_at }}</td>
							<td>{{ $element->monedas }}</td>
							<td>Aprobado</td>
						</tr>
						@php
							$contador+=1;
						@endphp
					@endforeach
				</tbody>
			</table>
		</div>
    </div>
</div>