ericmp #2
ericmp #2
FFilament
Created by ericmp #2 on 1/19/2024 in #❓┊help
How to use ->requiresConfirmation() in Repeater
🙏
3 replies
FFilament
Created by ericmp #2 on 1/19/2024 in #❓┊help
Is possible to set the panel with brand name + brand logo?
thanks!
8 replies
FFilament
Created by ericmp #2 on 1/19/2024 in #❓┊help
Is possible to set the panel with brand name + brand logo?
i said nothig, yeah the file path is: resources/views/filament/admin/logo.blade.php
8 replies
FFilament
Created by ericmp #2 on 1/19/2024 in #❓┊help
Is possible to set the panel with brand name + brand logo?
resources livewire filament admin logo?
8 replies
FFilament
Created by ericmp #2 on 1/19/2024 in #❓┊help
Is possible to set the panel with brand name + brand logo?
which is the route of the view
8 replies
FFilament
Created by ericmp #2 on 1/19/2024 in #❓┊help
Is possible to set the panel with brand name + brand logo?
but
8 replies
FFilament
Created by ericmp #2 on 1/19/2024 in #❓┊help
Is possible to set the panel with brand name + brand logo?
ohh cool trick. ill try it
8 replies
FFilament
Created by ericmp #2 on 1/9/2024 in #❓┊help
How to dig in `ColumnDefinition::nullable` vendor method?
I also went inside Fluent class, but I can't see the method
2 replies
FFilament
Created by ericmp #2 on 12/12/2023 in #❓┊help
How to increase table max width layout?
not sure how to make it 1400px exactly, u solved it?
47 replies
FFilament
Created by ericmp #2 on 12/12/2023 in #❓┊help
How to increase table max width layout?
agree
47 replies
FFilament
Created by ericmp #2 on 9/26/2023 in #❓┊help
Center form toggle
thanks ✌️
8 replies
FFilament
Created by ericmp #2 on 12/20/2023 in #❓┊help
How to make table searchable?
yeah cool final method:
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;
}
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;
}
thanks for the help (:
27 replies
FFilament
Created by ericmp #2 on 12/20/2023 in #❓┊help
How to make table searchable?
hmm okay now im going to search how to make case insensitive
27 replies