mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-14 08:11:20 +00:00
Moved to high charts.
This commit is contained in:
@@ -9,6 +9,8 @@ interface ComponentRepositoryInterface
|
||||
|
||||
public function count();
|
||||
|
||||
public function get();
|
||||
|
||||
public function store($data);
|
||||
|
||||
}
|
@@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user