Looking for a solution here that allows searching for a model by it's ID. I am using tntsearch and currently it seems all columns added inside of toSearchableArray()
are searchable except for ID. The following is my Order model
public function toSearchableArray() : array
{
return [
'id' => $this->id,
'title' => $this->title,
'client_request' => $this->client_request
];
}