File: D:/HostingSpaces/BVerhoeven/verhoevendak.nl/workbench/komma/kms/src/views/attributes/list.blade.php
<div class="entity-attribute entity-attribute-list {{{ count($attribute->errors) == 0 ? '' : ' error' }}} {{{$attribute->class}}} @if( !$attribute->show || ($attribute->show === 'admin' && !\Auth::user()->get()->is_admin) ) hidden @endif photo " ng-controller="KmsAttributeSelectController">
{{ Form::label($attribute->key, $attribute->label) }}
<div class="content">
@if($attribute->getData())
<ul>
@foreach($attribute->getData() as $dataObject)
<li>{{ $dataObject->getName() }}</li>
@endforeach
</ul>
@else
<ul>
<li>{{Config::get('kms::'.$lang.'/translations.noData')}}</li>
</ul>
@endif
</div>
</div>