@if(isset($sub_menu))
@include('dashboard.partials.sub-sidebar')
@endif
@include('dashboard.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
@endforelse
@stop