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