@extends('layout.master')
@section('content')
@if($bannerImage = Setting::get('app_banner'))
@endif
{{ $systemMessage }}
@if($aboutApp)
{{ trans('cachet.about_this_site') }}
{{ $aboutApp }}
@endif
@include('partials.components')
{{-- @if(Setting::get('display_graphs'))
@include('partials.graphs')
@endif --}}
{{ trans('cachet.past_incidents') }}
@foreach(range(0, 7) as $i => $v)
@include('partials.incident', array('i', $i))
@endforeach
@stop