From 87674de37eefb8ce3b3aae7aec3e1bb8a8a77ef4 Mon Sep 17 00:00:00 2001 From: Aniket Das Date: Tue, 24 May 2022 21:53:34 +0530 Subject: [PATCH] `withdrawable_balance` added to casts --- src/Models/Wallet.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Models/Wallet.php b/src/Models/Wallet.php index aca6027..773c620 100644 --- a/src/Models/Wallet.php +++ b/src/Models/Wallet.php @@ -18,6 +18,7 @@ class Wallet extends Model protected $casts = [ 'balance' => 'float', + 'withdrawable_balance' => 'float', ]; public function walletable()