@if(isset($sub_menu))
@include('partials.dashboard.sub-sidebar')
@endif
@forelse($components as $component)
@if($components->count() > 1)
@endif
{{ $component->name }} {{ $component->humanStatus }}
@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