@extends('layout.dashboard') @section('content') @if(isset($subMenu)) @include('partials.dashboard.sub-sidebar') @endif
{{ trans('cachet.dashboard.components') }} {{ trans('cachet.dashboard.component-add') }}
@forelse($components as $component)

@if($components->count() > 1) @endif {{ $component->name }} {{ $component->humanStatus }}

@if($component->description)

{{ $component->description }}

@endif
@empty
You should add a component.
@endforelse
@stop