@extends('layouts.default') @section('content') {!! Breadcrumbs::renderIfExists(Route::getCurrentRoute()->getName(), $budget, $repetition) !!}
Overview
Transactions
@include('list.journals-full',['sorting' => false])
@if(count($limits) == 1)

Show everything

@endif @foreach($limits as $limit) @foreach($limit->limitrepetitions as $rep)
Amount: {!! Amount::format($rep->amount) !!}
Spent: {!! Amount::format($rep->spentInRepetition()) !!}
spentInRepetition() > $rep->amount; ?> @if($overspent) spentInRepetition()); $pct = $spent != 0 ? ($rep->amount / $spent)*100 : 0; ?>
@else amount); $pct = $amount != 0 ? ($rep->spentInRepetition() / $amount)*100 : 0; ?>
@endif
@endforeach @endforeach @if(count($limits) == 1)

Show everything

@endif
@stop @section('scripts') @stop