Level 1
My work-around is $DomboEmailsQuery->whereIn('template', array_map( function ($a) { return '''.$a . '''; }, explode(',', $x) ) );
The following is failing where $x is a comma delimited list of strings
$DomboEmailsQuery->whereIn('template', explode(',', $x));
The resulting query is not 'quoting' the strings.
Jim
Please or to participate in this conversation.