| Current Path : /var/www/html/aventurasolar.sumar.com.py/resources/views/exports/ |
| Current File : /var/www/html/aventurasolar.sumar.com.py/resources/views/exports/solicitudes.blade.php |
<table>
<thead>
<tr>
<th>Solicitante</th>
<th>Producto</th>
<th>Cantidad</th>
<th>Monedas</th>
<th>Fecha de solicitud</th>
<th>Acciones</th>
</tr>
</thead>
<tbody>
@foreach($canjes as $value)
<tr>
<td>{{ $value->name }}</td>
<td>{{ $value->nombre }}</td>
<td>{{ $value->cantidad }}</td>
<td>{{ $value->monedas }}</td>
<td>{{ $value->fecha }}</td>
<td>Aprobado</td>
</tr>
@endforeach
</tbody>
</table>