Check for active gateway
This commit is contained in:
parent
625a8f4d7c
commit
c01681c42c
1 changed files with 4 additions and 0 deletions
|
|
@ -98,6 +98,10 @@ class OnlinePaymentController extends BaseController
|
|||
|
||||
$paymentDriver = $account->paymentDriver($invitation, $gatewayTypeId);
|
||||
|
||||
if (! $paymentDriver) {
|
||||
return redirect()->to('view/' . $invitation->invitation_key);
|
||||
}
|
||||
|
||||
try {
|
||||
return $paymentDriver->startPurchase(Input::all(), $sourceId);
|
||||
} catch (Exception $exception) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue