hgms
hgms
FFilament
Created by hgms on 5/31/2024 in #❓┊help
Help understanding/troubleshooting slow queries
I have some middleware that logs every query and its execution time, which is what I had included above. The query times were crazy different for some reason and I did not figure out why. I ended up pivoting to Elastic since the dataset really needed something like that anyway.
4 replies
FFilament
Created by Vp on 10/30/2023 in #❓┊help
table column visibility base on record
Just thought I'd add a use case that maybe wasn't considered. I'm using the Table builder with a non-traditional table layout and not being able to hide an empty field using the callback record makes my layout wonky.
6 replies
FFilament
Created by hgms on 10/4/2023 in #❓┊help
Preventing "No records found" state
For sure. It would be awesome to contribute to this amazing project. I'll submit once I get things working. Thanks.
6 replies
FFilament
Created by hgms on 10/4/2023 in #❓┊help
Preventing "No records found" state
If you have several filters going simultaneously and mistype in one field, you have to clear everything and start over, which isn't optimal.
6 replies
FFilament
Created by hgms on 10/4/2023 in #❓┊help
Preventing "No records found" state
Thanks, Patrick. I was hoping there would be a way to do it natively but if there isn't, I can look into extending the base component.
6 replies
FFilament
Created by hgms on 7/25/2023 in #❓┊help
Importing Filament Custom Pages
Thanks, @pboivin! This is very nice and I will use this strategy. Really appreciate the feedback. I am able to use the Sections components without registering them in the service provider. I think this is because of the livewire config from config/filament.php
....

'livewire' => [
'namespace' => 'App\\Filament',
'path' => app_path('Filament'),
],

....
....

'livewire' => [
'namespace' => 'App\\Filament',
'path' => app_path('Filament'),
],

....
10 replies
FFilament
Created by hgms on 7/25/2023 in #❓┊help
Importing Filament Custom Pages
The first screen cap structure is not working (when SubSectionOne is within the Pages folder) but the third screen cap does work (moving it outside Pages).
10 replies
FFilament
Created by hgms on 7/25/2023 in #❓┊help
Importing Filament Custom Pages
Not Working
10 replies
FFilament
Created by hgms on 6/15/2023 in #❓┊help
Help with getTableRecordClassesUsing
Looks like I need to hit some NetNinja on youtube lol
22 replies
FFilament
Created by hgms on 6/15/2023 in #❓┊help
Help with getTableRecordClassesUsing
Ah, that's good to know. Thanks a lot for the help.
22 replies
FFilament
Created by hgms on 6/15/2023 in #❓┊help
Help with getTableRecordClassesUsing
Yep, that did the trick. Thank you! Had to use ! as well. I am def not a css guru, but I thought that local classes always took precedence over inherited.
22 replies
FFilament
Created by hgms on 6/15/2023 in #❓┊help
Help with getTableRecordClassesUsing
I'll give it a shot
22 replies
FFilament
Created by hgms on 6/15/2023 in #❓┊help
Help with getTableRecordClassesUsing
the divide-gray-700
22 replies
FFilament
Created by hgms on 6/15/2023 in #❓┊help
Help with getTableRecordClassesUsing
22 replies
FFilament
Created by hgms on 6/15/2023 in #❓┊help
Help with getTableRecordClassesUsing
Agreed. I'll grab a screen shot
22 replies
FFilament
Created by hgms on 6/15/2023 in #❓┊help
Help with getTableRecordClassesUsing
It's there but crossed out
22 replies
FFilament
Created by hgms on 6/15/2023 in #❓┊help
Help with getTableRecordClassesUsing
Yeah, I will double check but if I apply the dark:border-orange-300 to the surrounding div of the table in the developer console, it works.
22 replies
FFilament
Created by hgms on 6/15/2023 in #❓┊help
Help with getTableRecordClassesUsing
Which happens to be what I was looking to do as well. Still, if that's the issue I'll have to come up with something else I guess.
22 replies
FFilament
Created by hgms on 6/15/2023 in #❓┊help
Help with getTableRecordClassesUsing
That's what's in the docs 🙂
22 replies
FFilament
Created by hgms on 6/7/2023 in #❓┊help
ViewAction on custom page
It does work and you pointed me in the right direction - thank you. I needed to attach the form to the action iteself
protected function getTableActions(): array
{
return [
Tables\Actions\ViewAction::make()->form([...]),
];
}
protected function getTableActions(): array
{
return [
Tables\Actions\ViewAction::make()->form([...]),
];
}
Bingo!
10 replies