소스 검색

Vitals summary compact

Vijayakrishnan 3 년 전
부모
커밋
8500bb7cf5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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));