Filament table sorting Bug

#❓┊help My filament page table is not sorting the total column correctly , iam using this
Tables\Columns\TextColumn::make('products_total')
->label('Total')
->money('usd', 100)
->getStateUsing(function (Website $record) {
return $record->totalBudget();
})
->sortable(),

I attached the outcome
Screenshot_2024-01-24_at_11.02.30_AM.png
Was this page helpful?