'amount', 'category' => 'expense_category', 'client' => 'client', 'vendor' => 'vendor', 'notes|details' => 'public_notes', 'date' => 'expense_date', ]; } /** * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function expense_category() { return $this->belongsTo('App\Models\ExpenseCategory')->withTrashed(); } /** * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function account() { return $this->belongsTo('App\Models\Account'); } /** * @return mixed */ public function user() { return $this->belongsTo('App\Models\User')->withTrashed(); } /** * @return mixed */ public function vendor() { return $this->belongsTo('App\Models\Vendor')->withTrashed(); } /** * @return mixed */ public function client() { return $this->belongsTo('App\Models\Client')->withTrashed(); } /** * @return mixed */ public function invoice() { return $this->belongsTo('App\Models\Invoice')->withTrashed(); } /** * @return mixed */ public function documents() { return $this->hasMany('App\Models\Document')->orderBy('id'); } /** * @return mixed */ public function getName() { if ($this->transaction_id) { return $this->transaction_id; } elseif ($this->public_notes) { return mb_strimwidth($this->public_notes, 0, 16, "..."); } else { return '#' . $this->public_id; } } /** * @return mixed */ public function getDisplayName() { return $this->getName(); } /** * @return string */ public function getRoute() { return "/expenses/{$this->public_id}"; } /** * @return mixed */ public function getEntityType() { return ENTITY_EXPENSE; } /** * @return bool */ public function isExchanged() { return $this->invoice_currency_id != $this->expense_currency_id || $this->exchange_rate != 1; } /** * @return float */ public function convertedAmount() { return round($this->amount * $this->exchange_rate, 2); } /** * @return array */ public function toArray() { $array = parent::toArray(); if(empty($this->visible) || in_array('converted_amount', $this->visible))$array['converted_amount'] = $this->convertedAmount(); return $array; } /** * @param $query * @param null $bankdId * @return mixed */ public function scopeBankId($query, $bankdId = null) { if ($bankdId) { $query->whereBankId($bankId); } return $query; } public function amountWithTax() { return Utils::calculateTaxes($this->amount, $this->tax_rate1, $this->tax_rate2); } public static function getStatuses($entityType = false) { $statuses = []; $statuses[EXPENSE_STATUS_LOGGED] = trans('texts.logged'); $statuses[EXPENSE_STATUS_INVOICED] = trans('texts.invoiced'); $statuses[EXPENSE_STATUS_PAID] = trans('texts.paid'); return $statuses; } } Expense::creating(function ($expense) { $expense->setNullValues(); }); Expense::created(function ($expense) { event(new ExpenseWasCreated($expense)); }); Expense::updating(function ($expense) { $expense->setNullValues(); }); Expense::updated(function ($expense) { event(new ExpenseWasUpdated($expense)); }); Expense::deleting(function ($expense) { $expense->setNullValues(); });