Skip to content

Instantly share code, notes, and snippets.

@fayqLs
Created October 3, 2024 06:09
Show Gist options
  • Save fayqLs/7289f1b23d88f83df86e76d73f03dab7 to your computer and use it in GitHub Desktop.
Save fayqLs/7289f1b23d88f83df86e76d73f03dab7 to your computer and use it in GitHub Desktop.
TRANSFORMAÇÃO VALOR SAÍDA
<?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