Place holder for reports.

This commit is contained in:
James Cole 2014-09-27 07:06:19 +02:00
parent 3bbecfe830
commit 78e80530d3
3 changed files with 17 additions and 3 deletions

View File

@ -12,7 +12,7 @@ class ReportController extends BaseController
*/
public function index()
{
return View::make('reports.index')->with('title','Reports')->with('mainTitleIcon','fa-line-chart');
}
}

View File

@ -137,8 +137,12 @@
<li>
<a href="#"><i class="fa fa-tags fa-fw"></i> Tags</a>
</li>
<li>
<a href="#"><i class="fa fa-line-chart fa-fw"></i> Reports</a>
<li
@if(!(strpos($r,'reports') === false))
class="active"
@endif
>
<a href="{{route('reports.index')}}"><i class="fa fa-line-chart fa-fw"></i> Reports</a>
</li>
<li
@if(

View File

@ -0,0 +1,10 @@
@extends('layouts.default')
@section('content')
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<p>
Here be content.
</p>
</div>
</div>
@stop