mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-23 19:24:03 +01:00
16 lines
355 B
PHP
16 lines
355 B
PHP
@extends('layout.master')
|
|
|
|
@section('content')
|
|
<div class='alert alert-{{ $systemStatus }}'>{{ $systemMessage }}</div>
|
|
|
|
@include('partials.components')
|
|
|
|
@if(Setting::get('display_graphs'))
|
|
@include('partials.graphs')
|
|
@endif
|
|
|
|
@foreach(range(0, 7) as $i => $v)
|
|
@include('partials.incident', array('i', $i))
|
|
@endforeach
|
|
@stop
|