In a column I have this relationship: ```php return $table ->columns([ Tables\Columns\TextColumn::make('enterprise.name') ->label('Empreendimento') ->sortable() ->searchable(), ... ``` How can I apply a default sort? I try it, but this is not work! ```php ->defaultSort(function ($query, $direction) { $query->orderBy('enterprise.name'); }) ```