hasMany('App\Models\Banking\Account'); } public function customers() { return $this->hasMany('App\Models\Income\Customer'); } public function invoices() { return $this->hasMany('App\Models\Income\Invoice', 'code', 'currency_code'); } public function revenues() { return $this->hasMany('App\Models\Income\Revenue', 'code', 'currency_code'); } public function bills() { return $this->hasMany('App\Models\Expense\Bill', 'code', 'currency_code'); } public function payments() { return $this->hasMany('App\Models\Expense\Payment', 'code', 'currency_code'); } }