@extends('layout.master')
@section('content')
@foreach(Component::get() as $component)
-
{{ $component->name }}
@if($component->description)
{{ $component->description }}
@endif
{{ $component->humanStatus }}
@endforeach
Past Incidents
@for($i=0; $i <= 7; $i++)
@include('incident', array('i', $i))
@endfor
@stop