laravel-livewire-tables
laravel-livewire-tables copied to clipboard
implementing like_operator to allow postgresql ILIKE in query
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');
}