@foreach($modules as $pool => $parent)
@forelse($parent as $eachModule)
{{ $eachModule->registry['name'] }}
@if($eachModule->registry['active']) @if ($eachModule->getConfigRoute()) @endif {{ _t('settings.Deactivate') }} {{ _t('settings.Uninstall') }} @elseif($eachModule->moduleId) {{ _t('settings.Activate') }} {{ _t('settings.Uninstall') }} @else {{ _t('settings.Install') }} {{ _t('settings.Uninstall') }} @endif
@forelse(collect($eachModule->getRegistry())->only(['name','author','version','description', 'class','screenshot']) as $metaKey => $metaValue) @if($metaKey == 'screenshot')
@else
{{ $metaValue }}
@endif @empty
{{ _t('settings.There_are_no_meta_informations_found') }}
@endforelse
@empty
{{ _t('settings.Sorry_there_are_no_modules_in_this_pool!') }}
@endforelse
@endforeach