@extends('layout.master') @section('content') @if($subscribersEnabled)

{{ trans('cachet.subscriber.button') }}

@endif
@include('partials.dashboard.errors')
@if($bannerImage = Setting::get('app_banner'))
@if($app_url = Setting::get('app_domain')) @else @endif
@endif
{{ $systemMessage }}
@if($about_app)

{{ trans('cachet.about_this_site') }}

{!! $about_app !!}

@endif @if(!$component_groups->isEmpty() || !$ungrouped_components->isEmpty())
@include('partials.components')
@endif @if($display_metrics && Setting::get('display_graphs'))
@include('partials.metrics')
@endif @if(!$scheduled_maintenance->isEmpty())
@include('partials.schedule')
@endif

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

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