shetabit/payment

درگاه به پرداخت

6000850 opened this issue · 1 comments

سلام وقت بخیر
من درگاه را روی behpardakht گذاشتم و در کنترلرم کد زیر رو گذاشتم :

Route::get('goToBank',function(){
    $invoice = (new Invoice)->amount(1000);
    // Purchase and pay the given invoice.
    // You should use return statement to redirect user to the bank page.
    return Payment::purchase($invoice, function($driver, $transactionId) {
        // Store transactionId in database as we need it to verify payment in the future.
    })->pay()->render();

اما بعد از اجرا کردن این آدرس اررور زیر رو میگیرم :

Symfony\Component\Debug\Exception\FatalThrowableError
Call to undefined method Illuminate\View\Compilers\BladeCompiler::render()

مشخصات سرور

لاراول : Laravel Framework 6.20.44
PHP : PHP 7.3.33-10+ubuntu18.04.1+deb.sury.org+1 (cli) (built: Feb 14 2023 18:29:13) ( NTS )

مشکل این بود که برطرف شد

با تشکر

php artisan vendor:publish --tag=payment-views