Kidereo
TLCTuto's Laravel Corner
•Created by Kidereo on 11/29/2023 in #💡filament
Group records in sort order
Thanks, Tuto - you certainly sent me in the right direction which is to read the documentation! In the end I used
Group::make('post.sort_order')
and then ->getTitleFromRecordUsing(fn (Comment $record): string => ucfirst($record->post->title))
to achieve the required effect. Thanks again!4 replies