Cachet/app/views/index.blade.php

26 lines
443 B
PHP
Raw Normal View History

2014-11-16 23:17:34 +00:00
@extends('layout.master')
@section('content')
<ul>
@foreach(Component::get() as $component)
<li>
{{ $component->name }}
@if($component->description)
<small>{{ $component->description }}</small>
@endif
<span class='pull-right'>
{{ $component->humanStatus }}
</span>
</li>
@endforeach
</ul>
<h1>Past Incidents</h1>
<ul>
@for($i=0; $i <= 7; $i++)
2014-11-16 23:17:34 +00:00
@include('incident', array('i', $i))
@endfor
</ul>
@stop