We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f7a1917 + 3bc1011 commit 3687af3Copy full SHA for 3687af3
app/Http/Controllers/MeasureController.php
@@ -462,8 +462,8 @@ public function plan(Request $request)
462
463
// get all attributes
464
$values = [];
465
- $attributes = DB::table('measures')
466
- ->select('attributes')
+ $attributes = DB::table('attributes')
+ ->select('values')
467
->get();
468
foreach ($attributes as $attribute) {
469
foreach (explode(' ', $attribute->attributes) as $value) {
resources/views/groups/show.blade.php
@@ -157,7 +157,7 @@
157
</form>
158
159
@endif
160
- <a class="button" href="/users">
+ <a class="button" href="/groups">
161
<span class="mif-cancel"></span>
162
163
{{ trans('common.cancel') }}
0 commit comments