papel generico terminado. papel impresion a falta de maquinas y tipologias

This commit is contained in:
Jaime Jimenez
2023-05-28 12:33:07 +02:00
parent e8d733f39d
commit 1cfa5bd60b
29 changed files with 1902 additions and 381 deletions

View File

@ -140,6 +140,21 @@ if (!function_exists('convertToSnakeCase')) {
}
}
if (!function_exists('convertToCamelCase')) {
function convertToCamelCase($string, $capitalizeFirstCharacter = false)
{
$str = str_replace('-', '', ucwords($string, '-'));
if (!$capitalizeFirstCharacter) {
$str = lcfirst($str);
}
$str = str_replace(' ', '', $str);
return $str;
}
}
if (!function_exists('newUUID')) {
function newUUID() {