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
prowlerOP8mo ago
talking about this one, in the Table builder
No description
prowler
prowlerOP8mo ago
anyone, please?
toeknee
toeknee8mo ago
No, you can use some CSS if you like, but remember that's where actions go.
LeandroFerreira
LeandroFerreira8mo 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
prowlerOP8mo ago
thank you both
toeknee
toeknee8mo ago
Could be a good tip/trick?
LeandroFerreira
LeandroFerreira8mo ago
Yes 👌

Did you find this page helpful?