resources/views/filament/admin/logo.blade.php
protected function applySearchToTableQuery(Builder $query): Builder{ if (filled($search = $this->getTableSearch())) { $search = str($search)->trim()->lower()->toString(); $query->whereRaw('LOWER(responses) LIKE ?', ['%' . $search . '%']); } return $query;}