File: /var/www/html/xfacil.desafio.com.py/app/Http/Livewire/Reacionesnoticia.php
<?php
namespace App\Http\Livewire;
use Livewire\Component;
use Livewire\WithPagination;
use App\Models\Noticia;
use DB;
class Reacionesnoticia extends Component{
use WithPagination;
protected $queryString = ['search' => ['except' => '']];
protected $paginationTheme = 'bootstrap';
public $search='';
public function render(){
$noticias = Noticia::where('titulo','LIKE','%'.$this->search.'%')->orderBy('id','desc')->paginate(100);
return view('livewire.reacionesnoticia',["noticias"=>$noticias]);
}
}