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>