File: /var/www/html/xfacil.desafio.com.py/resources/views/livewire/reacionesnoticia.blade.php
<div>
<h1 align="center">Reacciones de las noticias - <button onclick="fnExcelReport()" class="btn btn-success">Descargar reacciones</button></h1>
<div class="card">
<div class="card-header">
<div class="col-md-12">
<input wire:model="search" class="form-control" type="search" placeholder="Buscar" />
</div>
</div>
<div class="card-body">
<table class="table table-bordered" id="headerTable">
<thead>
<tr>
<th>Noticias</th>
<th>Reacciones</th>
<th>Opciones</th>
</tr>
</thead>
<tbody>
@foreach($noticias as $value)
<tr>
<td>
<b>Noticia: </b>{{ $value->titulo }}
</td>
@livewire('reacionesnoticiacontador', ['noticia_id' => $value->id ])
</tr>
@endforeach
</tbody>
</table>
</div>
<div class="card-footer">
<div class="col-12">
{{ $noticias->links() }}
</div>
</div>
</div>
</div>