From 36e3c1dfae31098ccbe8277ddd8f43b19d725300 Mon Sep 17 00:00:00 2001 From: batuhanbas Date: Fri, 22 Nov 2019 19:09:18 +0300 Subject: [PATCH] modules bar and user permission style updated --- .../partials/form/checkbox_group.blade.php | 29 ++++++++++--------- .../views/partials/modules/bar.blade.php | 2 +- 2 files changed, 17 insertions(+), 14 deletions(-) diff --git a/resources/views/partials/form/checkbox_group.blade.php b/resources/views/partials/form/checkbox_group.blade.php index 899a690b9..b746f6226 100644 --- a/resources/views/partials/form/checkbox_group.blade.php +++ b/resources/views/partials/form/checkbox_group.blade.php @@ -5,20 +5,23 @@ :class="[{'has-error': {{ isset($attributes['v-error']) ? $attributes['v-error'] : 'form.errors.get("' . $name . '")' }} }]"> {!! Form::label($name, $text, ['class' => 'form-control-label']) !!} -
- @foreach($items as $item) -
- {{ Form::checkbox($name, $item->$id, null, [ - 'id' => 'checkbox-' . $name . '-' . $item->$id, - 'class' => 'custom-control-input', - 'v-model' => !empty($attributes['v-model']) ? $attributes['v-model'] : 'form.' . $name - ]) }} +
+ @foreach($items as $item) +
+
+ {{ Form::checkbox($name, $item->$id, null, [ + 'id' => 'checkbox-' . $name . '-' . $item->$id, + 'class' => 'custom-control-input', + 'v-model' => !empty($attributes['v-model']) ? $attributes['v-model'] : 'form.' . $name + ]) }} - -
- @endforeach + +
+
+ @endforeach +
-
+