diff --git a/resources/views/fragment/schema/objectclasses.blade.php b/resources/views/fragment/schema/objectclasses.blade.php index 18d338ab..2da4fed1 100644 --- a/resources/views/fragment/schema/objectclasses.blade.php +++ b/resources/views/fragment/schema/objectclasses.blade.php @@ -2,14 +2,17 @@
@lang('Inherits from') |
- @if ($o->sup->count() === 0)
+ @if($o->sup->count() === 0)
@lang('(none)')
@else
- @foreach ($o->sup as $sup)
+ @foreach($o->sup as $sup)
@if($loop->index) @endif
{{ $sup }}
@endforeach
@@ -48,12 +51,12 @@
@lang('Parent to') |
- @if (strtolower($o->name) === 'top')
+ @if(strtolower($o->name) === 'top')
(all)
- @elseif (! $o->getChildObjectClasses()->count())
+ @elseif(! $o->getChildObjectClasses()->count())
@lang('(none)')
@else
- @foreach ($o->getChildObjectClasses() as $childoc)
+ @foreach($o->getChildObjectClasses() as $childoc)
@if($loop->index) @endif
{{ $childoc }}
@endforeach
@@ -75,7 +78,7 @@
|
|
|
|