laravel-livewire-tables icon indicating copy to clipboard operation
laravel-livewire-tables copied to clipboard

implementing like_operator to allow postgresql ILIKE in query

Open horaciod opened this issue 5 years ago • 0 comments

With this is possible to set the like operator Specially in postgresql is important to allow the case-insensitive search use example:

public function query() { $this->like_operator = 'ilike';
return Facultad::with('institucion'); }

horaciod avatar Jun 20 '20 21:06 horaciod