Skip to content

Instantly share code, notes, and snippets.

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