label(__('Name')), TextColumn::make('ip_address')->label(__('IP address')), TextColumn::make('sites_count')->label(__('Sites')), ]; } protected function getTableActions(): array { return [ Action::make('synchronize_server') ->label(__('Synchronize')) ->icon('heroicon-o-arrow-path') ->action(function (AvailableServer $record) { app(SynchronizeServerAction::class)->execute($record->id); }), ]; } }