Skip to content

Instantly share code, notes, and snippets.

@fayqLs
Created October 3, 2024 06:06
Show Gist options
  • Save fayqLs/1508816f8e712390633bcb6b7df1e24c to your computer and use it in GitHub Desktop.
Save fayqLs/1508816f8e712390633bcb6b7df1e24c to your computer and use it in GitHub Desktop.
TRANSFORMAÇÃO VALOR ENTRADA
<?php
if ($value > 0)
{
$valor = 'R$ '.number_format($value,2,',','.');
return "<span style = 'color:white;background-color:#009688;padding:6px;border-radius:7px;font-weight:600'>$valor</span>";
} else {
return '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment