firefly-iii/resources/views/reports/index.blade.php

60 lines
1.9 KiB
PHP
Raw Normal View History

2015-02-23 13:25:48 -06:00
@extends('layouts.default')
@section('content')
{!! Breadcrumbs::renderIfExists(Route::getCurrentRoute()->getName()) !!}
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="panel panel-default">
<div class="panel-heading">
Yearly reports
</div>
<div class="panel-body">
<ul>
@foreach($years as $year)
<li><a href="{{route('reports.year',$year)}}">{{$year}}</a></li>
@endforeach
</ul>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="panel panel-default">
<div class="panel-heading">
Monthly reports
</div>
<div class="panel-body">
2015-03-02 04:54:20 -06:00
@foreach($months as $year => $entries)
<h5>{{$year}}</h5>
<ul>
@foreach($entries as $month)
<li><a href="{{route('reports.month',[$month['year'],$month['month']])}}">{{$month['formatted']}}</a></li>
@endforeach
</ul>
2015-02-23 13:25:48 -06:00
@endforeach
2015-03-02 04:54:20 -06:00
2015-02-23 13:25:48 -06:00
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="panel panel-default">
<div class="panel-heading">
Budget reports
</div>
<div class="panel-body">
2015-03-02 04:54:20 -06:00
@foreach($months as $year => $entries)
<h5>{{$year}}</h5>
<ul>
@foreach($entries as $month)
<li><a href="{{route('reports.budget',[$month['year'],$month['month']])}}">{{$month['formatted']}}</a></li>
@endforeach
</ul>
2015-02-23 13:25:48 -06:00
@endforeach
</ul>
</div>
</div>
</div>
</div>
@stop