F
Filamentβ€’3w ago
prowler

Relocate Search Field in Table Builder

I'm interested in knowing if it's possible to move the search field integrated into the Table Builder to align it to the left instead of its current position on the right. Thank you for your assistance.
7 Replies
prowler
prowlerβ€’3w ago
talking about this one, in the Table builder
No description
prowler
prowlerβ€’3w ago
anyone, please?
toeknee
toekneeβ€’3w ago
No, you can use some CSS if you like, but remember that's where actions go.
LeandroFerreira
LeandroFerreiraβ€’3w ago
injecting a div in the toolbar via provider
FilamentView::registerRenderHook(
TablesRenderHook::TOOLBAR_START,
fn (): string => '<div class="flex">',
);
FilamentView::registerRenderHook(
TablesRenderHook::TOOLBAR_END,
fn (): string => '</div>',
);
FilamentView::registerRenderHook(
TablesRenderHook::TOOLBAR_START,
fn (): string => '<div class="flex">',
);
FilamentView::registerRenderHook(
TablesRenderHook::TOOLBAR_END,
fn (): string => '</div>',
);
or customizing the css as toeknee said
prowler
prowlerβ€’3w ago
thank you both
toeknee
toekneeβ€’3w ago
Could be a good tip/trick?
LeandroFerreira
LeandroFerreiraβ€’3w ago
Yes πŸ‘Œ