Eloquence\Behaviours\CamelCasing::getSnakeKey PHP Метод

getSnakeKey() защищенный Метод

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
Результат string
    protected function getSnakeKey($key)
    {
        return snake_case($key);
    }