Cachet/app/views/index.blade.php
2014-12-01 16:38:03 +00:00

27 lines
664 B
PHP

@extends('layout.master')
@section('content')
<div class='alert alert-{{ $systemStatus }}'>{{ $systemMessage }}</div>
@if(Auth::check())
<div class='row'>
<div class='col-md-12'>
<a class="btn btn-primary pull-right" href="/auth/logout">{{ Lang::get('cachet.logout') }}</a>
<p>{{ Lang::get('cachet.dashboard_link') }}</p>
</div>
</div>
@endif
@include('partials.components')
@if(Setting::get('display_graphs'))
@include('partials.graphs')
@endif
@for($i=0; $i <= 7; $i++)
@include('partials.incident', array('i', $i))
@endfor
@include('partials.support-link')
@stop