Skip to content

Commit ecb19a9

Browse files
authored
Merge pull request #378 from dbarzin/dev
fix request
2 parents 3687af3 + efb39cc commit ecb19a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Http/Controllers/MeasureController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ public function plan(Request $request)
466466
->select('values')
467467
->get();
468468
foreach ($attributes as $attribute) {
469-
foreach (explode(' ', $attribute->attributes) as $value) {
469+
foreach (explode(' ', $attribute->values) as $value) {
470470
if (strlen($value) > 0) {
471471
array_push($values, $value);
472472
}

0 commit comments

Comments
 (0)