From 37515c23134acc49a48aa8649a2d79dfed8017ab Mon Sep 17 00:00:00 2001 From: Daeng Deni Mardaeni Date: Wed, 15 Nov 2023 15:04:39 +0700 Subject: [PATCH] update currency --- Entities/Currency.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Entities/Currency.php b/Entities/Currency.php index f8a0f62..a70d907 100644 --- a/Entities/Currency.php +++ b/Entities/Currency.php @@ -16,4 +16,9 @@ 'authorized_by', ]; + public function rekenings() + { + return $this->hasMany(Rekening::class); + } + }