|
@@ -58,7 +58,10 @@ class StoreOrder extends BaseModel
|
|
|
$data = [];
|
|
|
$tests = $this->testsRequested();
|
|
|
foreach($tests as $test){
|
|
|
- array_push($data, config('constants.tests.'.$test));
|
|
|
+ $testName = config('constants.tests.'.$test);
|
|
|
+ $testPrice = displayAmount('$', config('app.'.$test));
|
|
|
+ $string = $testName . ' - '.$testPrice;
|
|
|
+ array_push($data, $string);
|
|
|
}
|
|
|
return $data;
|
|
|
}
|