Action in footer table

Hello, is it possible to insert an action in the footer of the table (getFooterActions ??)? I need to create a button that, once I have finished scrolling through the entire table, can redirect me to another page.
Now i have this in List.. resource:
    protected function getHeaderActions(): array
    {
        return [
            Action::make('showroom')
            ->label(__('b2brstoys.showroom.torna_a_showroom'))
            ->color('success')
            // ->action(function () {
            //     return redirect(ShowroomResource::getUrl('index'));
            // }),
            ->url(fn (): string => ShowroommarcheResource::getUrl()),
        ];
    }
Was this page helpful?