Forráskód Böngészése

Vitals summary compact

Vijayakrishnan 3 éve
szülő
commit
8500bb7cf5
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      app/Helpers/helpers.php

+ 1 - 1
app/Helpers/helpers.php

@@ -14,7 +14,7 @@ use App\Models\Bill;
 use Soundasleep\Html2Text as Html2Text;
 
 if(!function_exists('toFeetAndInches')) {
-    function toFeetAndInches($value, $ftLabel = 'ft.', $inLabel = 'in.') {
+    function toFeetAndInches($value, $ftLabel = ' ft.', $inLabel = ' in.') {
         if(!$value) return '-';
         $value = round($value);
         $ft = round(floor($value / 12));