From 53909fdd8ae279200a3ed8f81cc66306d8e7eec5 Mon Sep 17 00:00:00 2001 From: Aniruddha Maru Date: Wed, 15 Jul 2020 12:21:09 -0700 Subject: [PATCH] Fix maybe? --- app/Api/V1/Requests/AccountStoreRequest.php | 2 +- app/Api/V1/Requests/AccountUpdateRequest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Api/V1/Requests/AccountStoreRequest.php b/app/Api/V1/Requests/AccountStoreRequest.php index e8fb256056..1809dd95c6 100644 --- a/app/Api/V1/Requests/AccountStoreRequest.php +++ b/app/Api/V1/Requests/AccountStoreRequest.php @@ -75,7 +75,7 @@ class AccountStoreRequest extends Request 'opening_balance' => $this->string('opening_balance'), 'opening_balance_date' => $this->date('opening_balance_date'), 'cc_type' => $this->string('credit_card_type'), - 'cc_Monthly_payment_date' => $this->string('monthly_payment_date'), + 'cc_monthly_payment_date' => $this->string('monthly_payment_date'), 'notes' => $this->nlString('notes'), 'interest' => $this->string('interest'), 'interest_period' => $this->string('interest_period'), diff --git a/app/Api/V1/Requests/AccountUpdateRequest.php b/app/Api/V1/Requests/AccountUpdateRequest.php index 182ddf9753..2c52b8c2c2 100644 --- a/app/Api/V1/Requests/AccountUpdateRequest.php +++ b/app/Api/V1/Requests/AccountUpdateRequest.php @@ -75,7 +75,7 @@ class AccountUpdateRequest extends Request 'opening_balance' => $this->nullableString('opening_balance'), 'opening_balance_date' => $this->date('opening_balance_date'), 'cc_type' => $this->nullableString('credit_card_type'), - 'cc_Monthly_payment_date' => $this->nullableString('monthly_payment_date'), + 'cc_monthly_payment_date' => $this->nullableString('monthly_payment_date'), 'notes' => $this->nullableNlString('notes'), 'interest' => $this->nullableString('interest'), 'interest_period' => $this->nullableString('interest_period'),