'integer', 'debit' => 'integer', 'post_date' => 'datetime', 'tags' => 'array', ]; //protected $dateFormat = 'Y-m-d'; protected $dates = [ 'created_at', 'updated_at', 'post_date', ]; /** * Callbacks * @throws \UnexpectedValueException * @throws \InvalidArgumentException */ protected static function boot() { static::creating(function ($transaction) { if(!$transaction->id) { $transaction->id = \Ramsey\Uuid\Uuid::uuid4()->toString(); } }); /** * Adjust the balance according to credits and debits */ static::saved(function ($transaction) { //$transaction->journal->resetCurrentBalances(); $journal = $transaction->journal; if($transaction['credit']) { $balance = $journal->balance->toAmount(); $journal->balance = $balance + $transaction['credit']; } if($transaction['debit']) { $balance = $journal->balance->toAmount(); $journal->balance = $balance - $transaction['debit']; } $journal->save(); }); /** * Deleting a transaction reverses the credits and debits */ static::deleted(function ($transaction) { $journal = $transaction->journal; if ($transaction['credit']) { $balance = $journal->balance->toAmount(); $journal->balance = $balance - $transaction['credit']; } if ($transaction['debit']) { $balance = $journal->balance->toAmount(); $journal->balance = $balance + $transaction['debit']; } $journal->save(); }); parent::boot(); } /** * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function journal() { return $this->belongsTo(Journal::class); } /** * @param BaseModel $object * @return JournalTransaction */ public function referencesObject($object) { $this->ref_class = \get_class($object); $this->ref_class_id = $object->id; $this->save(); return $this; } /** * */ public function getReferencedObject() { if ($classname = $this->ref_class) { $klass = new $this->ref_class; return $klass->find($this->ref_class_id); } return false; } /** * @param string $currency */ public function setCurrency($currency) { $this->currency = $currency; } }