Cannot search using searchable when use format #552
Replies: 2 comments 5 replies
-
My answer in you issue here |
Beta Was this translation helpful? Give feedback.
0 replies
-
Column::make("Course number", "course_number")->sortable()->format(fn($value, $row, Column $column) => 'RGCS-'.$row->course_number)->searchable(), I casted a column value as above. It's worked. But it's not searchable Is there any work arounds guys ? |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Column::make('Referrer')->searchable()
->format(function ($created_at, $column, $customer) {
return $customer->referrer_name ;
}),
cannot search using this searchable function when use format dunction. How can i do with rappasoft datatable?
Beta Was this translation helpful? Give feedback.
All reactions