relationship sorting in table

Tables\Columns\TextColumn::make('firstCategory.name')
->sortable(query: fn ($query, $direction) => 
  $query->with('firstCategory')
  ->orderBy('firstCategory.order_column', $direction)
),

`SQLSTATE[42S22]: Column not found: 1054 Unknown column 'firstCategory.order_column' in 'order clause'`
Was this page helpful?