Code Monkey home page Code Monkey logo

Comments (2)

salamzadeh avatar salamzadeh commented on June 10, 2024 1

اصولا Callback‌ همواره برای یه جا صورت میگیره نه چند روت متفاوت
برای اینکار بهتر هست که یه تابع پرداخت داشته باشین که علاوه بر پارامتر مبلغ پارامتر calback_url رو هم بگیره و بعدش از طریق اون نسبت به ایجاد صورتحساب و پرداخت اقدام کنید.
برای مثال این تابع رو در نظر بگیرید

public function payment_request(Request $request)
    {
        $gateway ='nextpay';
        $amount = 10000;
        $callback = route('calback-api');
        if( $request->has('gateway') && $request->gateway == null)
            $gateway = $request->gateway;
        if( $request->has('amount') && $request->amount == null)
            $amount = $request->amount;
        if( $request->has('callback') && $request->callback == null)
            $callback = $request->callback;

        return Payment::via($gateway)->callbackUrl($callback)->purchase(
            (new Invoice)->amount($amount),
            function($driver, $transactionId) use ($amount) {
                $transaction = new Transaction();
                $transaction->price = $amount;
                $transaction->transaction_id = $transactionId;
                $transaction->description = "افزایش اعتبار به مبلغ " . $amount . " تومان در سایت تست";
                $transaction->save();
            }
        )->pay()->toJson();
    }

from payment.

amir-habibi-dev avatar amir-habibi-dev commented on June 10, 2024 1

@salamzadeh
درود و سپاس از راهنمایی شما
بله به نتیجه مورد نظر رسیدم
پیروز باشید

from payment.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.