Skip to content

Commit 0f282da

Browse files
committed
status_not_equal filter option added
1 parent f370c06 commit 0f282da

7 files changed

Lines changed: 14 additions & 7 deletions

src/Http/Requests/IndexCurrencySwapRequest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ public function rules(): array
4646
'sender_receiver_id' => ['integer', 'nullable'],
4747
'user_id_sender_receiver_id' => ['integer', 'nullable'],
4848
'service_type_slug' => ['string', 'nullable'],
49-
'status' => ['string', 'nullable'],
49+
'status' => ['string', 'array', 'nullable'],
50+
'status_not_equal' => ['string', 'array', 'nullable'],
5051
'service_slug' => ['string', 'nullable'],
5152
'transaction_form_code' => ['string', 'nullable'],
5253
'transaction_form_id' => ['integer', 'nullable'],

src/Http/Requests/IndexDepositRequest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ public function rules(): array
4646
'sender_receiver_id' => ['integer', 'nullable'],
4747
'user_id_sender_receiver_id' => ['integer', 'nullable'],
4848
'service_type_slug' => ['string', 'nullable'],
49-
'status' => ['string', 'nullable'],
49+
'status' => ['string', 'array', 'nullable'],
50+
'status_not_equal' => ['string', 'array', 'nullable'],
5051
'service_slug' => ['string', 'nullable'],
5152
'transaction_form_code' => ['string', 'nullable'],
5253
'transaction_form_id' => ['integer', 'nullable'],

src/Http/Requests/IndexRequestMoneyRequest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ public function rules(): array
4646
'sender_receiver_id' => ['integer', 'nullable'],
4747
'user_id_sender_receiver_id' => ['integer', 'nullable'],
4848
'service_type_slug' => ['string', 'nullable'],
49-
'status' => ['string', 'nullable'],
49+
'status' => ['string', 'array', 'nullable'],
50+
'status_not_equal' => ['string', 'array', 'nullable'],
5051
'service_slug' => ['string', 'nullable'],
5152
'transaction_form_code' => ['string', 'nullable'],
5253
'transaction_form_id' => ['integer', 'nullable'],

src/Http/Requests/IndexWalletToAtmRequest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ public function rules(): array
4646
'sender_receiver_id' => ['integer', 'nullable'],
4747
'user_id_sender_receiver_id' => ['integer', 'nullable'],
4848
'service_type_slug' => ['string', 'nullable'],
49-
'status' => ['string', 'nullable'],
49+
'status' => ['string', 'array', 'nullable'],
50+
'status_not_equal' => ['string', 'array', 'nullable'],
5051
'service_slug' => ['string', 'nullable'],
5152
'transaction_form_code' => ['string', 'nullable'],
5253
'transaction_form_id' => ['integer', 'nullable'],

src/Http/Requests/IndexWalletToBankRequest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ public function rules(): array
4646
'sender_receiver_id' => ['integer', 'nullable'],
4747
'user_id_sender_receiver_id' => ['integer', 'nullable'],
4848
'service_type_slug' => ['string', 'nullable'],
49-
'status' => ['string', 'nullable'],
49+
'status' => ['string', 'array', 'nullable'],
50+
'status_not_equal' => ['string', 'array', 'nullable'],
5051
'service_slug' => ['string', 'nullable'],
5152
'transaction_form_code' => ['string', 'nullable'],
5253
'transaction_form_id' => ['integer', 'nullable'],

src/Http/Requests/IndexWalletToPrepaidCardRequest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ public function rules(): array
4646
'sender_receiver_id' => ['integer', 'nullable'],
4747
'user_id_sender_receiver_id' => ['integer', 'nullable'],
4848
'service_type_slug' => ['string', 'nullable'],
49-
'status' => ['string', 'nullable'],
49+
'status' => ['string', 'array', 'nullable'],
50+
'status_not_equal' => ['string', 'array', 'nullable'],
5051
'service_slug' => ['string', 'nullable'],
5152
'transaction_form_code' => ['string', 'nullable'],
5253
'transaction_form_id' => ['integer', 'nullable'],

src/Http/Requests/IndexWalletToWalletRequest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ public function rules(): array
4646
'sender_receiver_id' => ['integer', 'nullable'],
4747
'user_id_sender_receiver_id' => ['integer', 'nullable'],
4848
'service_type_slug' => ['string', 'nullable'],
49-
'status' => ['string', 'nullable'],
49+
'status' => ['string', 'array', 'nullable'],
50+
'status_not_equal' => ['string', 'array', 'nullable'],
5051
'service_slug' => ['string', 'nullable'],
5152
'transaction_form_code' => ['string', 'nullable'],
5253
'transaction_form_id' => ['integer', 'nullable'],

0 commit comments

Comments
 (0)