Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Class 'Larabookir\Gateway' not found #191

Open
AhmadPayamani opened this issue Aug 10, 2019 · 1 comment
Open

Class 'Larabookir\Gateway' not found #191

AhmadPayamani opened this issue Aug 10, 2019 · 1 comment

Comments

@AhmadPayamani
Copy link

ارسال درخواست به زرین پال

namespace App\Services;
// namespace Larabookir\Gateway;
use Larabookir\Gateway;

class bankService {

public static function Send($SumPrice){
    // return $SumPrice;
    try {

        $gateway = Gateway::make(new Zarinpal());
  
     
        // $gateway->setCallback(url('/path/to')); You can also change the callback
        $gateway
             ->price(1000)
             // setShipmentPrice(10) // optional - just for paypal
             // setProductName("My Product") // optional - just for paypal
             ->ready();
     
        $refId =  $gateway->refId(); // شماره ارجاع بانک
        $transID = $gateway->transactionId(); // شماره تراکنش
     
       // در اینجا
       //  شماره تراکنش  بانک را با توجه به نوع ساختار دیتابیس تان 
       //  در جداول مورد نیاز و بسته به نیاز سیستم تان
       // ذخیره کنید .
       
        return $gateway->redirect();
        
     } catch (Exception $e) {
        
            echo $e->getMessage();
     }
}

}


دریافت پاسخ از زرین پال

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use Larabookir\Gateway;
use Larabookir\Gateway\Exceptions\RetryException;
use Mockery\Expectation;

class BankController extends Controller
{

public function recive(Request $request){
    // return request()->all();
    try { 

        $gateway = Gateway::verify();
        $trackingCode = $gateway->trackingCode();
        $refId = $gateway->refId();
        $cardNumber = $gateway->cardNumber();
        
         // تراکنش با موفقیت سمت بانک تایید گردید
         // در این مرحله عملیات خرید کاربر را تکمیل میکنیم
     
     } catch (RetryException $e) {
     
         // تراکنش قبلا سمت بانک تاییده شده است و
         // کاربر احتمالا صفحه را مجددا رفرش کرده است
         // لذا تنها فاکتور خرید قبل را مجدد به کاربر نمایش میدهیم
         
         echo $e->getMessage() . "<br>";
         
     } catch (Expectation $e) {
        
         // نمایش خطای بانک
         echo $e->getMessage();
     }  
}

}

روت
Route::get('/path/to','BankController@recive');

فاساد اضافه شده
پابیلش شده و دیتابیس هم ایجاد شده
اما بازم خطا میده

@AhmadPayamani
Copy link
Author

خب مشکل اینجا بود که من
use Larabookir\Gateway;
استفاده کرده بودم
باید از \ استفاده میکردم
و نیازی به یوز نبود
\Gateway

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant