noahlocke
noahlocke
FFilament
Created by noahlocke on 12/9/2024 in #❓┊help
Custom Filter - Multi-Select on Pivot
Woops, need to using whereIn() when passing an array 🤦‍♂️
3 replies
FFilament
Created by seamlessly on 11/22/2024 in #❓┊help
TableWidget: Modal in View Actions empty data
I copied this exactly and am getting Typed static property App\Filament\Widgets\GenericTableWidget::$resourceClass must not be accessed before initialization ... any ideas?
5 replies
FFilament
Created by TVKVDS on 6/26/2023 in #❓┊help
Log Action events
@TVKVDS did you implement this?
4 replies
FFilament
Created by noahlocke on 4/26/2024 in #❓┊help
Is it possible to sort options in a Select form field?
SOLVED: my brain just needed to fart a few times:
Select::make('noteServices')
->multiple()
->preload(true)
->relationship(
name: 'services',
titleAttribute: 'name',
modifyQueryUsing:
fn (Builder $query) => $query->orderBy('sort_order', 'asc')
),
Select::make('noteServices')
->multiple()
->preload(true)
->relationship(
name: 'services',
titleAttribute: 'name',
modifyQueryUsing:
fn (Builder $query) => $query->orderBy('sort_order', 'asc')
),
2 replies
FFilament
Created by noahlocke on 10/2/2023 in #❓┊help
Change $modelLabel on Relation Manager table?
Thank you @Vp, worked like a charm
3 replies
FFilament
Created by noahlocke on 9/29/2023 in #❓┊help
TextEntry::make()->placeholder() question...
Fantastic—thanks much @Hugh Messenger !
3 replies
FFilament
Created by noahlocke on 9/27/2023 in #❓┊help
Migrating from Laravel Nova to Filament v3
Thanks @Patrick Boivin! Thankfully not a lot of custom Vue components other than some fields that I believe are native to Filament.
4 replies