@extends('layouts.default') @section('content') {!! Breadcrumbs::renderIfExists(Route::getCurrentRoute()->getName(), $journal) !!}
Date | {{{$journal->date->format('jS F Y')}}} |
Type | {{{$journal->transactiontype->type}}} |
Completed | @if($journal->completed == 1) Yes @else No @endif |
Budget | {{{$budget->name}}} |
Category | {{{$category->name}}} |
No related transactions
Group #{{$group->id}} ({{$group->relation}}) | ||
---|---|---|
{{{$jrnl->description}}} | @foreach($jrnl->transactions()->get() as $t) @if($t->amount > 0) {!! Amount::formatTransaction($t) !!} @endif @endforeach |
Amount | {!! Amount::formatTransaction($t) !!} |
New balance | {!! Amount::format($t->before) !!} → {!! Amount::format($t->after) !!} |
Description | {{{$t->description}}} |