-
-
Save fayqLs/7289f1b23d88f83df86e76d73f03dab7 to your computer and use it in GitHub Desktop.
TRANSFORMAÇÃO VALOR SAÍDA
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ($value > 0 or $value < 0) | |
{ | |
$valor = 'R$ '.number_format($value,2,',','.'); | |
return "<span style ='color:white;background-color:#F44336;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