First:
DB::table(\'someTable\') ->selectRaw(\'count(*), min(some_field) as someMin, max(another_field) as someMax\') ->get();
As per Laravel's documentation:
Note: The Laravel query builder uses PDO parameter binding to protect your application against SQL injection attacks. There is no need to clean strings being passed as bindings.