@extends('layout.dashboard') @section('content')
@if(isset($sub_menu)) @include('dashboard.partials.sub-sidebar') @endif
{{ trans('dashboard.components.components') }} {{ trans('dashboard.components.add.title') }}
@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