components([ // ]); } public static function table(Table $table): Table { return $table ->columns([ TextColumn::make('id') ->label(__('oauth.refresh_token')) ->searchable() , TextColumn::make('access_token_id') ->label(__('oauth.access_token')) ->searchable() , TextColumn::make('expires_at') ->label(__('label.expire_at')) ]) ->filters([ // ]) ->recordActions([ // Tables\Actions\EditAction::make(), DeleteAction::make(), ]) ->toolbarActions([ DeleteBulkAction::make(), ]); } public static function getPages(): array { return [ 'index' => ManageRefreshTokens::route('/'), ]; } }