Files
cachet-docker/app/views/index.blade.php
2014-11-16 23:17:34 +00:00

10 lines
142 B
PHP

@extends('layout.master')
@section('content')
<ul>
@for ($i=0; $i <= 7; $i++)
@include('incident', array('i', $i))
@endfor
</ul>
@stop