label('Reload Cache') ->icon('heroicon-o-arrow-path') ->color('warning') ->requiresConfirmation() ->modalHeading('Reload Settings Cache') ->modalDescription('This will clear and reload the website settings cache. The cache will be automatically rebuilt on the next request.') ->modalSubmitActionLabel('Reload Cache') ->action(function () { Cache::forget('website_settings'); Notification::make() ->success() ->title('Cache Cleared') ->body('Settings cache has been cleared successfully.') ->send(); }), CreateAction::make(), ]; } protected function getTableRecordsPerPageSelectOptions(): array { return [25, 50, 100]; } }