Zarinpal | Zarinpal library for Laravel | Build Tool library

 by   pishran PHP Version: v4.3.3 License: MIT

kandi X-RAY | Zarinpal Summary

kandi X-RAY | Zarinpal Summary

Zarinpal is a PHP library typically used in Utilities, Build Tool, Laravel, Composer applications. Zarinpal has no bugs, it has no vulnerabilities, it has a Permissive License and it has low support. You can download it from GitHub.

Zarinpal library for Laravel based on Zarinpal API v4. کتابخانه زرین پال برای لاراول براساس نسخه 4 ای‌پی‌آی زرین پال.
Support
    Quality
      Security
        License
          Reuse

            kandi-support Support

              Zarinpal has a low active ecosystem.
              It has 26 star(s) with 4 fork(s). There are 2 watchers for this library.
              OutlinedDot
              It had no major release in the last 12 months.
              There are 0 open issues and 7 have been closed. On average issues are closed in 0 days. There are no pull requests.
              It has a neutral sentiment in the developer community.
              The latest version of Zarinpal is v4.3.3

            kandi-Quality Quality

              Zarinpal has no bugs reported.

            kandi-Security Security

              Zarinpal has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.

            kandi-License License

              Zarinpal is licensed under the MIT License. This license is Permissive.
              Permissive licenses have the least restrictions, and you can use them in most projects.

            kandi-Reuse Reuse

              Zarinpal releases are available to install and integrate.
              Installation instructions are not available. Examples and code snippets are available.

            Top functions reviewed by kandi - BETA

            kandi has reviewed Zarinpal and discovered the below as its top functions. This is intended to give you an instant insight into Zarinpal implemented functionality, and help decide if they suit your requirements.
            • Get the error message .
            • Send payment request .
            • Get start url .
            • Set merchant ID .
            • Set the authority .
            • Set the email address .
            • Redirect to user .
            • Set the amount .
            • Return the code .
            • Check if the code is success .
            Get all kandi verified functions for this library.

            Zarinpal Key Features

            No Key Features are available at this moment for Zarinpal.

            Zarinpal Examples and Code Snippets

            copy iconCopy
            $authority = request()->query('Authority'); // دریافت کوئری استرینگ ارسال شده توسط زرین پال
            $status = request()->query('Status'); // دریافت کوئری استرینگ ارسال شده توسط زرین پال
            
            $response = zarinpal()
                ->merchantId('00000000-0000-0000-00  
            copy iconCopy
            $response = zarinpal()
                ->merchantId('00000000-0000-0000-0000-000000000000') // تعیین مرچنت کد در حین اجرا - اختیاری
                ->amount(100) // مبلغ تراکنش
                ->request()
                ->description('transaction info') // توضیحات تراکنش
                ->call  
            زرین پال | Zarinpal,تنظیمات - Configuration
            PHPdot img3Lines of Code : 3dot img3License : Permissive (MIT)
            copy iconCopy
            ZARINPAL_MERCHANT_ID=00000000-0000-0000-0000-000000000000
            
            ZARINPAL_CURRENCY=IRT
            
            ZARINPAL_CURRENCY=IRR
              

            Community Discussions

            QUESTION

            laravel ignore return redirect()
            Asked 2021-May-09 at 16:05

            hi guys i'm trying to redirect user to bank but laravel is ignoring my return redirect

            in here

            ...

            ANSWER

            Answered 2021-May-09 at 15:03

            QUESTION

            Failed to resolve: recyclerview-1.1.0 Affected Modules: app
            Asked 2020-Sep-18 at 11:15

            i didn't find the solution to this problem in stackoverflow or any where. I just transfer my project to android studio 4.0.1 and migrated to androidx and got this error:

            and this is error in xml file that contains recyclerview

            build.gradle(app)

            ...

            ANSWER

            Answered 2020-Sep-17 at 22:22

            I think you do not need recycler view import in your build.gradle because your androidx.appcompat:appcompat:1.2.0 should come with recycler view library.

            So get rid of implementation 'androidx.recyclerview:recyclerview:1.1.0' from your build.gradle that should fix it.

            Source https://stackoverflow.com/questions/63944712

            QUESTION

            Kotlin-How can i put comma every three number like this 1,000,000,000
            Asked 2020-Sep-14 at 04:53

            i have an issue and will be appreciated if u help me .

            this is an example of my issue :

            I have some variables like (10.000 , 20,000) that user can select them and increase there credit .

            when user click and chose one of them it goes to bank gateway and after payment it goes back to my app .

            I used a text view to get the amount . it's no problem with this .

            the amount that stored and show to user is 10000 or 20000 or 100000 and i want to be like this 10,000 or 20,000 or 100,000

            actually every three number put a comma .

            code :

            ...

            ANSWER

            Answered 2020-Sep-13 at 17:25

            QUESTION

            Creating intermediate progress bar in Kotlin
            Asked 2020-Sep-10 at 12:29

            I want to create an intermediate progress bar and this progress bar will be gone when my task is completed.

            Code:

            ...

            ANSWER

            Answered 2020-Sep-10 at 11:48

            You're calling progressBar.visibilty = View.GONE right after you call mypayment(), but that function runs asynchronously. This means you hide the progress bar before you mypayment() finishes. You should call progressBar.visibilty = View.GONE only after you get the callback from your API:

            Source https://stackoverflow.com/questions/63828435

            QUESTION

            Error:Failed to resolve: support-vector-drawable
            Asked 2020-Jan-05 at 17:09

            I have a problem with gradle. it was working fine but all of sudden when I was rebuilding the project it gives me this error:

            Error:Failed to resolve: support-vector-drawable

            I can't find out what my problem is?

            My app.gradle

            ...

            ANSWER

            Answered 2018-Oct-29 at 14:04

            Add vectorDrawables.useSupportLibrary = true in defaultConfig

            Source https://stackoverflow.com/questions/50912739

            QUESTION

            use dynamic value in a config file
            Asked 2019-Oct-05 at 10:46

            i have config file for payments, i should use dynamic value (that is loading from db) for merchant-id key:

            in AppServiceProvider in boot method i write this

            ...

            ANSWER

            Answered 2019-Oct-05 at 10:46

            You can not use helper functions except env() inside config files in Laravel because those files are loaded and cached way before AppServiceProvider in the pipeline and therefor you get null

            If you want to get something from the database by a simple global function call, make your own

            For example

            app/Helpers.php

            Source https://stackoverflow.com/questions/58154328

            QUESTION

            when I redirect to an external url, the request gets canceled in browser with normal mode but works in disable security mode
            Asked 2019-Jun-08 at 14:39

            I'm using this code:

            ...

            ANSWER

            Answered 2019-Jun-08 at 11:11

            It's because you may try to redirect from non https to https url. If your domain hosted with https then it should not caused the issue.

            Solution:

            Suppose application hosted on domain: https://abc.xx Payment gateway domain: https://xyz.xx

            Create a temp url/page in laravel that contains the javascriptcode to redirect on other domain.

            Like:

            1. Suppose user is on page: https://abc.xx/pay, clicked on any button and controller redirect to other laravel temporary page.

            2. The temp page: https://abc.xx/processing contains the javascript code.

            Source https://stackoverflow.com/questions/56503996

            QUESTION

            ZarinPal Request not Working In Android 9
            Asked 2019-May-01 at 07:21

            zarinpal request not working in my app.

            I implemented the code as zarinpal documentation, but it does not work.

            ...

            ANSWER

            Answered 2019-May-01 at 07:21

            zarinpal work by volley library in android . volley library version 1.1.0 not working in android 9. then you must update volley library version to 1.1.1

            replace

            Source https://stackoverflow.com/questions/55932755

            QUESTION

            All dependencies faild to resolve?
            Asked 2018-Oct-18 at 14:09

            My project was built and run correctly but since I updated Android Studio it gives these errors… and the offline work is unchecked.

            ERRORS

            ...

            ANSWER

            Answered 2018-Oct-14 at 16:39

            In your project .gradle (not the app module one), you are probably missing the Google repository. That's why the dependencies cannot be found.

            Source https://stackoverflow.com/questions/52804232

            QUESTION

            Error:Execution failed for task app:transformClassesWithMultidexlistForDebug'
            Asked 2018-May-30 at 08:32

            I added a few dependencies in my project and when I run it this error shows:

            Error:Execution failed for task ':app:transformClassesWithMultidexlistForDebug'. > java.io.IOException: Can't write [D:\android\projects\android-client\app\build\intermediates\multi-dex\debug\componentClasses.jar] (Can't read [D:\android\projects\android-client\app\build\intermediates\transforms\desugar\debug\47.jar(;;;;;;**.class)] (Duplicate zip entry [47.jar:android/support/design/widget/CoordinatorLayout$Behavior.class]))

            and here is my build.gradle file:

            ...

            ANSWER

            Answered 2018-May-30 at 07:26

            I think you have not added the dependency.

            Source https://stackoverflow.com/questions/50598106

            Community Discussions, Code Snippets contain sources that include Stack Exchange Network

            Vulnerabilities

            No vulnerabilities reported

            Install Zarinpal

            You can download it from GitHub.
            PHP requires the Visual C runtime (CRT). The Microsoft Visual C++ Redistributable for Visual Studio 2019 is suitable for all these PHP versions, see visualstudio.microsoft.com. You MUST download the x86 CRT for PHP x86 builds and the x64 CRT for PHP x64 builds. The CRT installer supports the /quiet and /norestart command-line switches, so you can also script it.

            Support

            For any new features, suggestions and bugs create an issue on GitHub. If you have any questions check and ask questions on community page Stack Overflow .
            Find more information at:

            Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items

            Find more libraries