How can I addSelectRaw() in order to bind my variables to addSelect()?
I've got this in my code:
$query->addSelect( DB::raw('MATCH(matchy.val) against ("'.addslashes($q).'") as relevance ') );
addslashes() is far less than ideal, and i should be binding to a ? instead. How can I do addSelectRaw() instead?