mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-08 15:05:29 +00:00
Small fixes and updates. [skip ci]
This commit is contained in:
@@ -77,9 +77,36 @@
|
||||
@endforeach
|
||||
@endif
|
||||
|
||||
|
||||
|
||||
<div class="row">
|
||||
<div class="col-lg-12 col-md-12 col-sm-12">
|
||||
|
||||
<h4>Budgets</h4>
|
||||
<table class="table table-bordered">
|
||||
@foreach($budgets as $budget)
|
||||
<tr>
|
||||
<td>
|
||||
<a href="{{route('budgets.show',$budget->id)}}">{{{$budget->name}}}</a>
|
||||
</td>
|
||||
@if($budget->count == 0)
|
||||
<td colspan="2">
|
||||
<em>No budget set for this period.</em>
|
||||
</td>
|
||||
@else
|
||||
@foreach($budget->limits as $limit)
|
||||
@foreach($limit->limitrepetitions as $rep)
|
||||
<td>
|
||||
{{mf($rep->amount)}}
|
||||
</td>
|
||||
<td>
|
||||
{{mf($rep->left())}}
|
||||
</td>
|
||||
@endforeach
|
||||
@endforeach
|
||||
@endif
|
||||
</tr>
|
||||
@endforeach
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user