From eaab52328b380c0adfba157f784bafaf9df9646c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Wed, 10 Feb 2021 12:08:16 +0300 Subject: [PATCH] fixed transaction request.. --- app/Http/Requests/Banking/Transaction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Requests/Banking/Transaction.php b/app/Http/Requests/Banking/Transaction.php index dfa4f2f4d..e3b347c8e 100644 --- a/app/Http/Requests/Banking/Transaction.php +++ b/app/Http/Requests/Banking/Transaction.php @@ -41,7 +41,7 @@ class Transaction extends FormRequest 'contact_id' => 'nullable|integer', 'category_id' => 'required|integer', 'payment_method' => 'required|string', - 'attachment' => $attachment, + 'attachment.*' => $attachment, ]; }