Chart re-implemented and added coveralls and other instructions, which will probably not work at all.

This commit is contained in:
James Cole
2015-02-07 08:23:44 +01:00
parent 37e58ac13a
commit fb1c78c657
13 changed files with 371 additions and 25 deletions

View File

@@ -26,6 +26,11 @@ class Account extends Model
return $this->belongsTo('FireflyIII\User');
}
public function transactions()
{
return $this->hasMany('FireflyIII\Models\Transaction');
}
public function scopeAccountTypeIn(EloquentBuilder $query, array $types)
{
if (is_null($this->joinedAccountTypes)) {