@extends('layout.master') @section('content') @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