proper indents for @includes

This commit is contained in:
Nick Peelman
2016-07-18 09:51:23 -04:00
parent 52c4901a78
commit 9750191bff
2 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@
</li>
<div class="form-group group-items {{ $componentGroup->has_subscriber($subscriptions) ? null : "hide" }}">
@foreach($componentGroup->enabled_components()->orderBy('order')->get() as $component)
@include('partials.component_input', compact($component))
@include('partials.component_input', compact($component))
@endforeach
</div>
@endif
@@ -27,7 +27,7 @@
<strong>{{ trans('cachet.components.group.other') }}</strong>
</li>
@foreach($ungrouped_components as $component)
@include('partials.component_input', compact($component))
@include('partials.component_input', compact($component))
@endforeach
</ul>
@endif

View File

@@ -26,7 +26,7 @@
</div>
<div class="panel-body">
@if(!$component_groups->isEmpty() || !$ungrouped_components->isEmpty())
@include('partials.components_form')
@include('partials.components_form')
@else
<p>{{ trans('cachet.subscriber.manage.no_subscriptions') }}</p>
@endif