Spelling errors fixed.

This commit is contained in:
James Cole
2014-12-24 21:20:47 +01:00
parent e3482011d5
commit 037452e525
11 changed files with 20 additions and 148 deletions

View File

@@ -91,7 +91,7 @@
<tr>
<td><a href="{{route('accounts.show',$id)}}">{{{$info['name']}}}</a></td>
<td>{{mf($info['balance'])}}</td>
<td>{{mf($info['leftForPiggybanks'])}}</td>
<td>{{mf($info['leftForPiggyBanks'])}}</td>
<td>{{mf($info['sumOfTargets'])}}</td>
<td>{{mf($info['sumOfSaved'])}}</td>
<td>{{mf($info['leftToSave'])}}</td>

View File

@@ -17,10 +17,10 @@
<div class="col-sm-10">
<div class="checkbox">
<label>
@if(in_array($account->id,$frontpageAccounts->data) || count($frontpageAccounts->data) == 0)
<input type="checkbox" name="frontpageAccounts[]" value="{{$account->id}}" checked> {{{$account->name}}}
@if(in_array($account->id,$frontPageAccounts->data) || count($frontPageAccounts->data) == 0)
<input type="checkbox" name="frontPageAccounts[]" value="{{$account->id}}" checked> {{{$account->name}}}
@else
<input type="checkbox" name="frontpageAccounts[]" value="{{$account->id}}"> {{{$account->name}}}
<input type="checkbox" name="frontPageAccounts[]" value="{{$account->id}}"> {{{$account->name}}}
@endif
</label>
</div>