Basic output of incidents

This commit is contained in:
James Brooks
2014-11-16 23:17:34 +00:00
parent ba6892e858
commit fab38a766d
6 changed files with 44 additions and 23 deletions
+9
View File
@@ -0,0 +1,9 @@
@extends('layout.master')
@section('content')
<ul>
@for ($i=0; $i <= 7; $i++)
@include('incident', array('i', $i))
@endfor
</ul>
@stop