Sindbad~EG File Manager
<?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]);
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists