© 2026 Hedgehog Software, LLC
return $table ->records(fn (self $livewire) => $livewire->data) ->selectable() ->columns([ TextColumn::make('name'), TextColumn::make('amount') ->label('Betrag') ->money() ->color('primary') ->summarize(Sum::make()), ])
/** * @return array<string, mixed> */ public function getTableSummarySelectedState(Builder $query, ?Closure $modifyQueryUsing = null): array