First attempt at an import/migration procedure.

This commit is contained in:
James Cole
2014-07-03 21:31:32 +02:00
parent 35c90a32e9
commit 1836249407
13 changed files with 259 additions and 89 deletions

View File

@@ -1,5 +1,5 @@
<?php
use Carbon\Carbon as Carbon;
use Firefly\Storage\Account\AccountRepositoryInterface as ARI;
class HomeController extends BaseController {
@@ -10,6 +10,7 @@ class HomeController extends BaseController {
public function index()
{
return View::make('index');
$count = $this->accounts->count();
return View::make('index')->with('count',$count);
}
}