Is it possible to add an Action to an Infolist Section header?

I've been trying something like the following, but it doesn't seem to display:

return $infolist
    ->schema([
        Section::make('overview')
            ->action(
                Action::make('add-new-project')
                    ->form(fn (Form $form): Form => ProjectResource::form($form) )
                    ->size(ActionSize::ExtraSmall)
            )
            ->columns(8)
            ->heading('Project Overview')
            ->schema([
                //
            ])
        ]);

I can get Actions to display everywhere else, but they don't seem to want to sit in the header strip, right where they'd be most useful! I've tried the Action method, the RegisterActions method...
Was this page helpful?