getHeaderActions with custom header view

I'm using a custom header view, but it seems to be overwriting what's defined in my getHeaderActions method on my class. I've tried doing something like {{ $this->headerActions }} in my custom header blade view, but that doesn't seem to do it. How can I have a custom header AND header actions?
Solution
Possibly:
<x-filament::actions
       :actions="$this->getCachedHeaderActions()”
/>
Was this page helpful?