mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-30 12:43:57 -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()
|
||||
{
|
||||
|
||||
return View::make('reports.index')->with('title','Reports')->with('mainTitleIcon','fa-line-chart');
|
||||
}
|
||||
|
||||
}
|
@ -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(
|
||||
|
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