Cachet/app/views/index.blade.php
2014-12-27 23:43:31 -06:00

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