mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-23 11:16:05 +01:00
18 lines
370 B
PHP
18 lines
370 B
PHP
@extends('layout.master')
|
|
|
|
@section('content')
|
|
<div class='alert alert-{{ $systemStatus }}'>{{ $systemMessage }}</div>
|
|
|
|
@if(Auth::check())
|
|
<p>You're logged in. This will be a link to the Dashboard.</p>
|
|
@endif
|
|
|
|
@include('imports.components')
|
|
|
|
@for($i=0; $i <= 7; $i++)
|
|
@include('imports.incident', array('i', $i))
|
|
@endfor
|
|
|
|
@include('imports.support-link')
|
|
@stop
|