yandos666
yandos666
FFilament
Created by Tjiel on 10/25/2024 in #❓┊help
How can I change the width of individual statsoverview stats?
Have you looked at getHeaderWidgetsColumns? you should be able to set the columns to 2 and then set columspan to 1 each
7 replies
FFilament
Created by yandos666 on 6/11/2024 in #❓┊help
use getOptionsFormComponents to adjust export query
Awesome, thanks @Tetracyclic!
6 replies
FFilament
Created by AleorL on 5/30/2024 in #❓┊help
widget stat
Could you not just do this with CSS? the class is fi-wi-stats-overview-stat-value
5 replies
FFilament
Created by yandos666 on 2/22/2024 in #❓┊help
Equivalent of novas computed fields?
Ah Awesome thanks @oddvalue getStateUsing seems to be the one!
6 replies
FFilament
Created by yandos666 on 12/4/2023 in #❓┊help
Nova style relationship links on table builder
@Dan Harrin I was not! just taken a look and it seems like a good fit, thanks!
5 replies
FFilament
Created by yandos666 on 8/15/2023 in #❓┊help
Hiding relationManagers on view page (v2)
@wbzyfishy in the end i did a hack with checking the route name, if it was a view route I passed back an empty array. Not pretty but it worked
public static function getRelations(): array { if (Route::getCurrentRoute() && Route::getCurrentRoute()->getName() === 'filament.resources.events.view') { return []; } return [ StatementsRelationManager::class, AssetsRelationManager::class, ]; }
7 replies
FFilament
Created by yandos666 on 7/4/2023 in #❓┊help
How to check for current page from a resource
@Dennis Koch thats for individual form elements right? This is disabling the relationManager entirely
5 replies