How do I add another button on Resource page?
I wanted to add another button called "Form Settings" beside the "New Form" is it possible in filament?
If so how do I approach this problem?
So when I click on I get redirected to another page.

Solution:Jump to solution
```php
protected function getHeaderActions(): array
{
return [
Actions\Action::make('formSetting')...
17 Replies
Something like this is what I want to achieve

Add it to the
headerAction()
on the ListPage
Sorry for the newbish question but I do not have ListPage on my FormsResource.
How should I implement it ?
It's called
ListForms
I tried searching
ListForms
on the docs but I do not see anything on the search result in v3.x
Not the docs. Look at your codebase 😅

I am doing it wrong
Check your codebase for
ListForms
. That's the Livewire. component you are currently looking at. Resources are just a wrapper for common stuff that is reused in other places. The Pages are the actual Livewire components that get rendered.I think I am getting it now. That this is what you meant

My apologies
Yep. It's always a good start to look at the existing code.
Solution
Got it working, thanks!
Better use
FormSettingsPage::getUrl()
for routes.Didn't know I COULD DO THAT.
Cool, is this a livewire feature
No it's just a function on the pages 😅