@extends('layout.master') @section('content')
@include('dashboard.partials.errors')
@include('partials.about-app')
{{ $system_message }}
@if(!$component_groups->isEmpty() || !$ungrouped_components->isEmpty())
@include('partials.components')
@endif @if($display_metrics && $app_graphs)
@include('partials.metrics')
@endif @if(!$scheduled_maintenance->isEmpty())
@include('partials.schedule')
@endif @if($days_to_show > 0)

{{ trans('cachet.incidents.past') }}

@foreach($all_incidents as $date => $incidents) @include('partials.incidents', [compact($date), compact($incidents)]) @endforeach
@endif @include('partials.modals.subscribe') @stop