Sindbad~EG File Manager

Current Path : /var/www/html/xfacil.desafio.com.py/app/Http/Livewire/
Upload File :
Current File : /var/www/html/xfacil.desafio.com.py/app/Http/Livewire/Fronttips.php

<?php

namespace App\Http\Livewire;

use Livewire\Component;
use Livewire\WithPagination;
use App\Models\Tip;

class Fronttips extends Component{

    use WithPagination;

    protected $queryString = ['search' => ['except' => '']];

    protected $paginationTheme = 'bootstrap';

    public $search='';

    public function render(){

        $tips = Tip::where('titulo','LIKE','%'.$this->search.'%')->orderBy('id','desc')->paginate(20);

        return view('livewire.fronttips',["tips"=>$tips]);
    }

}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists