How to create Action in table bottom?

Hi ,
Please suggest how I create Action in the table bottom.

As Like header .....

class ListSubscriptionPlans extends ListRecords
{
protected function getHeaderActions(): array
{
return [
Action::make('Subscription History')->label("Subscription History")
->url(route('filament.app.resources.subscription-histories.index')),
];
}
}
Was this page helpful?