Moved to high charts.

This commit is contained in:
James Cole
2014-07-15 06:58:08 +02:00
parent 6e7ea89c70
commit 0e09e52e45
26 changed files with 2055 additions and 85 deletions

View File

@@ -9,6 +9,8 @@ interface ComponentRepositoryInterface
public function count();
public function get();
public function store($data);
}

View File

@@ -13,10 +13,15 @@ class EloquentComponentRepository implements ComponentRepositoryInterface
public function count()
{
return \Auth::user()->accounts()->count();
return \Auth::user()->components()->count();
}
public function get() {
die('no impl');
}
public function store($data)
{