Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

soh3illl's avatar

How to disable/hide the Create button in a Filament Resource?

Hi everyone,

I'm working with Filament v3 and need to remove the "Create" button from a specific Resource's list page. I still want the index, edit, and view pages to be accessible, but I want to completely hide the option to create new records from the UI.

I've looked through the documentation but couldn't find a straightforward way to do this. Could someone point me to the correct method or property to override?

Thank you!

1 like
2 replies
pockx96's avatar

you men a header actions? you can return a void array like this

protected function getHeaderActions(): array
{
    return [];
}

Please or to participate in this conversation.