@extends('layouts.default') @section('content') {!! Breadcrumbs::renderIfExists() !!} @if($count == 0)

Welcome to Firefly III.

Create a new asset account to get started.

Start from scratch

@else @include('partials.boxes')
Savings {!! Amount::format($savingsTotal) !!}
@if(count($savings) == 0)

Mark your asset accounts as "Savings account" to fill this panel.

@else @foreach($savings as $account)
{!! Amount::format($account->startBalance) !!}
@if($account->difference < 0)
@if($account->percentage <= 50) {{Amount::format($account->difference,false)}} @endif
@if($account->percentage > 50) {{Amount::format($account->difference,false)}} @endif
@else
@if($account->percentage > 50) {{Amount::format($account->difference,false)}} @endif
@if($account->percentage <= 50) {{Amount::format($account->difference,false)}} @endif
@endif
{!! Amount::format($account->endBalance) !!}
@endforeach @endif
@foreach($transactions as $data)
{{{$data[1]->name}}} ({!! Amount::format(Steam::balance($data[1])) !!})
@include('list.journals-tiny',['transactions' => $data[0],'account' => $data[1]])
@endforeach
@endif @stop @section('scripts') @stop @section('styles') @stop