Eloquence\Behaviours\CamelCasing::getSnakeKey PHP Method

getSnakeKey() protected method

If the field names need to be converted so that they can be accessed by camelCase, then we can do that here.
protected getSnakeKey ( $key ) : string
$key
return string
    protected function getSnakeKey($key)
    {
        return snake_case($key);
    }