@includeWhen(isset($subMenu), 'dashboard.partials.sub-sidebar')
@include('partials.errors')
@forelse($components as $component)
@if($components->count() > 1)
@endif
{!! $component->name !!} {{ $component->human_status }}
@if($component->group)
{{ trans('dashboard.components.listed_group', ['name' => $component->group->name]) }}
@endif
@if($component->description)
{{ $component->description }}
@endif
@empty
{{ trans('dashboard.components.add.message') }}
@endforelse
@stop