From d60e0df079f61069018d8105b34c6dd378bc8505 Mon Sep 17 00:00:00 2001 From: Omid Date: Thu, 27 Jan 2022 19:25:53 +0330 Subject: [PATCH] chore: add authorization_token to config --- config/gateway_zarinpal.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/gateway_zarinpal.php b/config/gateway_zarinpal.php index fa9ffe6..dc3f4c8 100644 --- a/config/gateway_zarinpal.php +++ b/config/gateway_zarinpal.php @@ -11,12 +11,14 @@ * gateway configurations */ 'main' => [ + 'authorization_token' => '', // Used only to refund payments and can be created from zarinpal panel 'merchant_id' => '', 'callback_url' => 'https://yoursite.com/path/to', 'mode' => 'sandbox', // Supported values: normal, zaringate, sandbox 'description' => 'payment using zarinpal', ], 'other' => [ + 'authorization_token' => '', 'merchant_id' => '', 'callback_url' => 'https://yoursite.com/path/to', 'mode' => 'normal',