How can I do a case-sensitive string match with laravel?
SELECT * FROM `invites` WHERE `token`=\'OGwie2e2985tOEGewgu23hUFs\'
Can be done as >
A little bit late but still wouldn't this be a better alternative?
Invite::whereRaw("BINARY `token`= ?", array($token))->first()