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