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

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

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

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

{!! $aboutApp !!}

@endif
@include('partials.components')
@if($displayMetrics && Setting::get('display_graphs'))
@include('partials.metrics')
@endif @if(!$scheduledMaintenance->isEmpty())
@include('partials.schedule')
@endif

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

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