I need to run a query having collate utf8_bin like so:
collate utf8_bin
SELECT * FROM `table` WHERE `field`=\'value\' collate utf8_bin;
This is
You can do it this way if it solves your problem:
SomeModel::whereField($value)->orderByRaw("name COLLATE utf8_bin ASC")->get();