Fixed a view and a botched include.

This commit is contained in:
James Cole
2015-04-11 12:50:56 +02:00
parent df8976eabe
commit 13890e32a1
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
<?php namespace FireflyIII\Providers;
use FireflyIII\Models\Account;
use FireflyIII\Models\Bill;
use FireflyIII\Models\BudgetLimit;
use FireflyIII\Models\LimitRepetition;
use FireflyIII\Models\PiggyBank;
@@ -12,7 +13,7 @@ use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
use Illuminate\Database\QueryException;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
use Log;
use Reminder;
use FireflyIII\Models\Reminder;
/**
* Class EventServiceProvider
@@ -71,7 +72,6 @@ class EventServiceProvider extends ServiceProvider
}
);
Account::deleted(
function (Account $account) {

View File

@@ -146,7 +146,7 @@
<em>{{{$budget['name']}}}</em>
@endif
</td>
<td>{!! Amount::format($budget['amount']) !!}</td>
<td>{!! Amount::format($budget['queryAmount']) !!}</td>
<td>{!! Amount::format($budget['spent'],false) !!}</td>
<td>{!! Amount::format($budget['amount'] + $budget['spent']) !!}</td>
</tr>