Does Eloquent ORM change CamelCase to underscores?

Solution:

Do not use camel case for table names.

If you however need to, try this:

class RelDevelopersProject extends Eloquent {

    protected $table = 'RelDevelopersProjects';

}

See eloquent in the Laravel Docs.