-
Notifications
You must be signed in to change notification settings - Fork 84
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 Softon\Indipay\Gateways\Gateway does not exist #50
Comments
I have got the same issue plz guide..? |
Its because the gateway field is missing in // gateway = CCAvenue / PayUMoney / EBS / Citrus / InstaMojo / ZapakPay / Mocker
you should place the appropriate NameOFGateway here |
@softon I have used the code which you gave us above, but still i am getting the same issue. |
I'm using larave 5.6 and facing same issue. Can you please help me to solve this? |
Hello, I'm also facing the same issue on laravel 5.6. Can you please help me to fix this issue? |
which gateway are you using? |
I'm using CC avenue |
what was the code used to forward to the payment gateway.
Pls takecare of the case while mentioning the name of gateway
…On Wed, Apr 21, 2021 at 10:48 AM qualwebs ***@***.***> wrote:
I'm using CC avenue
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#50 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAESF2PPK4W2UB7WHBCSXK3TJZNY5ANCNFSM4GBS7S7A>
.
--
With Regards,
Shiburaj Pappu
*( Lecturer )*
Rizvi College Of Eng.
*Mob *: 9029326504
*Email* : ***@***.***
*Web* : http://www.shiburaj.com
|
`
|
<?php
return [
/*
|--------------------------------------------------------------------------
| Indipay Service Config
|--------------------------------------------------------------------------
| gateway = CCAvenue / PayUMoney / EBS / Citrus / InstaMojo / ZapakPay /
Paytm / Mocker
*/
'gateway' => 'CCAvenue', // Replace with the name of default gateway you
want to use Change the config/indipay.php and set the default gateway to
CCAvenue and try
$parameters = [
'transaction_no' => '1233221223322',
'amount' => '1200.00',
'name' => 'Jon Doe',
'email' => ***@***.***'
];
$order = Indipay::prepare($parameters);
return Indipay::process($order);
…On Thu, Apr 22, 2021 at 5:26 PM qualwebs ***@***.***> wrote:
`
public function ccavenuePayment(){
$parameters = [
'transaction_no' => '1233221223322',
'amount' => '1200.00',
'name' => 'Jon Doe',
'email' => ***@***.***'
];
$order = Indipay::gateway('CCAvenue')->prepare($parameters);
return Indipay::process($order);
}`
I'm using the above code.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#50 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAESF2IXRX2F5KYB7IUOUHDTKAFGPANCNFSM4GBS7S7A>
.
--
With Regards,
Shiburaj Pappu
*( Lecturer )*
Rizvi College Of Eng.
*Mob *: 9029326504
*Email* : ***@***.***
*Web* : http://www.shiburaj.com
|
i have got this message using laravel 5.5 ,how can i fix them?
The text was updated successfully, but these errors were encountered: