Order by computed field #15291
Unanswered
slamcoderpt
asked this question in
Help
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Package
Table builder
Package Version
v3.2
How can we help you?
In my code i would like to order by a computed value. Need some help to do it.
Does filament support front end sorting instead of backend?
`<?php
namespace App\Filament\Company\Widgets;
use App\Models\Device;
use App\Models\DeviceEvents;
use Filament\Tables\Columns\TextColumn;
use Filament\Tables\Table;
use Filament\Widgets\Concerns\InteractsWithPageFilters;
use Filament\Widgets\TableWidget as BaseWidget;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;
use Carbon\Carbon;
class ReportTopTable extends BaseWidget
{
use InteractsWithPageFilters;
}
`
Beta Was this translation helpful? Give feedback.
All reactions