mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Place holder for reports.
This commit is contained in:
parent
3bbecfe830
commit
78e80530d3
@ -12,7 +12,7 @@ class ReportController extends BaseController
|
|||||||
*/
|
*/
|
||||||
public function index()
|
public function index()
|
||||||
{
|
{
|
||||||
|
return View::make('reports.index')->with('title','Reports')->with('mainTitleIcon','fa-line-chart');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -137,8 +137,12 @@
|
|||||||
<li>
|
<li>
|
||||||
<a href="#"><i class="fa fa-tags fa-fw"></i> Tags</a>
|
<a href="#"><i class="fa fa-tags fa-fw"></i> Tags</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li
|
||||||
<a href="#"><i class="fa fa-line-chart fa-fw"></i> Reports</a>
|
@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>
|
||||||
<li
|
<li
|
||||||
@if(
|
@if(
|
||||||
|
10
app/views/reports/index.blade.php
Normal file
10
app/views/reports/index.blade.php
Normal 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
|
Loading…
Reference in New Issue
Block a user