2014-11-16 23:17:34 +00:00
|
|
|
@extends('layout.master')
|
|
|
|
|
|
|
|
@section('content')
|
2014-11-19 16:26:42 +00:00
|
|
|
<div class='alert alert-{{ $systemStatus }}'>{{ $systemMessage }}</div>
|
|
|
|
|
2014-11-24 15:54:56 +00:00
|
|
|
@if(Auth::check())
|
2014-11-25 21:45:08 +00:00
|
|
|
<a class="pull-right" href="/auth/logout">Logout</a>
|
2014-11-24 15:54:56 +00:00
|
|
|
<p>You're logged in. This will be a link to the Dashboard.</p>
|
|
|
|
@endif
|
|
|
|
|
2014-11-24 17:48:26 +00:00
|
|
|
@include('imports.components')
|
2014-11-16 23:34:46 +00:00
|
|
|
|
2014-11-19 12:46:29 +00:00
|
|
|
@for($i=0; $i <= 7; $i++)
|
2014-11-24 17:48:26 +00:00
|
|
|
@include('imports.incident', array('i', $i))
|
2014-11-19 12:46:29 +00:00
|
|
|
@endfor
|
2014-11-24 09:58:32 +00:00
|
|
|
|
2014-11-24 17:48:26 +00:00
|
|
|
@include('imports.support-link')
|
2014-11-16 23:17:34 +00:00
|
|
|
@stop
|