morphTo(); } /** * Relationship * * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function ledger() { return $this->belongsTo(Ledger::class); } /** * Relationship * * @return \Illuminate\Database\Eloquent\Relations\HasMany */ public function transactions() { return $this->hasMany(JournalTransaction::class); } /** * @param string $currency */ public function setCurrency($currency) { $this->currency = $currency; } /** * @param Ledger $ledger * * @return Journal */ public function assignToLedger(Ledger $ledger) { $ledger->journals()->save($this); return $this; } /** * @throws \UnexpectedValueException * @throws \InvalidArgumentException */ public function resetCurrentBalances() { $this->balance = $this->getBalance(); $this->save(); } /** * @param $value * * @throws \UnexpectedValueException * @throws \InvalidArgumentException * * @return Money */ public function getBalanceAttribute($value): Money { return new Money($value); } /** * @param $value * * @throws \UnexpectedValueException * @throws \InvalidArgumentException */ public function setBalanceAttribute($value): void { $value = ($value instanceof Money) ? $value : new Money($value); $this->attributes['balance'] = $value ? (int) $value->getAmount() : null; } /** * @param Journal $object * * @return \Illuminate\Database\Eloquent\Relations\HasMany */ public function transactionsReferencingObjectQuery($object) { return $this ->transactions() ->where('ref_model', \get_class($object)) ->where('ref_model_id', $object->id); } /** * Get the credit only balance of the journal based on a given date. * * @param Carbon $date * * @throws \UnexpectedValueException * @throws \InvalidArgumentException * * @return Money */ public function getCreditBalanceOn(Carbon $date) { $balance = $this->transactions() ->where('post_date', '<=', $date) ->sum('credit') ?: 0; return new Money($balance); } /** * Get the balance of the journal based on a given date. * * @param Carbon $date * * @throws \UnexpectedValueException * @throws \InvalidArgumentException * * @return Money */ public function getBalanceOn(Carbon $date) { return $this->getCreditBalanceOn($date) ->subtract($this->getDebitBalanceOn($date)); } /** * Get the balance of the journal as of right now, excluding future transactions. * * @throws \UnexpectedValueException * @throws \InvalidArgumentException * * @return Money */ public function getCurrentBalance() { return $this->getBalanceOn(Carbon::now()); } /** * Get the balance of the journal. This "could" include future dates. * * @throws \UnexpectedValueException * @throws \InvalidArgumentException * * @return Money */ public function getBalance() { $balance = $this ->transactions() ->sum('credit') - $this->transactions()->sum('debit'); return new Money($balance); } }