Made it almost to the accounts.

This commit is contained in:
James Cole
2015-05-01 22:44:35 +02:00
parent bda18f296d
commit 3e5e5b376f
15 changed files with 633 additions and 71 deletions

View File

@@ -161,7 +161,9 @@ class ConfigServiceProvider extends ServiceProvider
]
],
'Session',
'Route'
'Route',
'Config',
'ExpandedForm'
],
/*

View File

@@ -9,7 +9,8 @@ use FireflyIII\Support\ExpandedForm;
use FireflyIII\Support\Navigation;
use FireflyIII\Support\Preferences;
use FireflyIII\Support\Steam;
use FireflyIII\Support\TwigSupport;
use FireflyIII\Support\Twig\General;
use FireflyIII\Support\Twig\Journals;
use FireflyIII\Validation\FireflyValidator;
use Illuminate\Support\ServiceProvider;
use Twig;
@@ -36,7 +37,8 @@ class FireflyServiceProvider extends ServiceProvider
$config = App::make('config');
Twig::addExtension(new Functions($config));
Twig::addExtension(new TwigSupport);
Twig::addExtension(new General);
Twig::addExtension(new Journals);
}
public function register()