Some small changes in the account display.

This commit is contained in:
Sander Dorigo
2014-07-07 19:33:17 +02:00
parent aca666704d
commit c7d3ef6a97
3 changed files with 30 additions and 24 deletions

View File

@@ -26,8 +26,10 @@ class AccountController extends \BaseController
'initial' => [], 'initial' => [],
'cash' => [] 'cash' => []
]; ];
$total = $all->count();
foreach ($all as $account) { foreach ($all as $account) {
switch ($account->accounttype->description) { switch ($account->accounttype->description) {
case 'Default account': case 'Default account':
$list['personal'][] = $account; $list['personal'][] = $account;
@@ -45,7 +47,7 @@ class AccountController extends \BaseController
} }
} }
return View::make('accounts.index')->with('accounts', $list); return View::make('accounts.index')->with('accounts', $list)->with('total',$total);
} }
// //
// //

View File

@@ -2,7 +2,7 @@
@section('content') @section('content')
<div class="row"> <div class="row">
<div class="col-lg-8 col-md-8 col-sm-12"> <div class="col-lg-8 col-md-8 col-sm-12">
<h1>Firefly<br/> <h1>Firefly
<small>Add a new account</small> <small>Add a new account</small>
</h1> </h1>
<p class="lead"> <p class="lead">
@@ -15,7 +15,7 @@
a positive balance). a positive balance).
</p> </p>
<p> <p>
Your first account should be a checking or savings account. Enter its name and if relevant If this is your first account, it should be a checking or savings account. Enter its name and if relevant
the current balance. Check your bank statements for the last current balance you can find. the current balance. Check your bank statements for the last current balance you can find.
</p> </p>
{{Form::open(['class' => 'form-horizontal','url' => route('accounts.store')])}} {{Form::open(['class' => 'form-horizontal','url' => route('accounts.store')])}}

View File

@@ -15,6 +15,7 @@
</div> </div>
<div class="row"> <div class="row">
<div class="col-lg-12 col-md-12 col-sm-12"> <div class="col-lg-12 col-md-12 col-sm-12">
@if($total > 0)
<h3>Your accounts</h3> <h3>Your accounts</h3>
<p style="width:50%;" class="text-info"> <p style="width:50%;" class="text-info">
These are your personal accounts. These are your personal accounts.
@@ -42,6 +43,9 @@
personal accounts) it gets added or drawn from this account. personal accounts) it gets added or drawn from this account.
</p> </p>
@include('accounts.list',['accounts' => $accounts['cash']]) @include('accounts.list',['accounts' => $accounts['cash']])
@else
<a href="{{route('accounts.create')}}" class="btn btn-lg btn-info">Create a new account</a>
@endif
</div> </div>
</div> </div>