TextColumn::make('client_id')
->label('Client')
->searchable() // TODO: works for id but not the formatted name value ????
->formatStateUsing(function ($state) {
$contact = Contact::where('id', $state)->first();
return $contact->first_name.' '.$contact->last_name;
}),
TextColumn::make('client_id')
->label('Client')
->searchable() // TODO: works for id but not the formatted name value ????
->formatStateUsing(function ($state) {
$contact = Contact::where('id', $state)->first();
return $contact->first_name.' '.$contact->last_name;
}),