1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Exceptions/PaymentFailed.php

29 lines
600 B
PHP
Raw Normal View History

<?php
namespace App\Exceptions;
use Exception;
class PaymentFailed extends Exception
{
public function report()
{
// ..
}
public function render($request)
{
2021-12-21 03:45:00 +01:00
if (auth()->user() || ($request->has('cko-session-id') && $request->query('cko-session-id') )) {
return render('gateways.unsuccessful', [
'message' => $this->getMessage(),
'code' => $this->getCode(),
]);
}
return response([
'message' => $this->getMessage(),
'code' => $this->getCode(),
]);
}
}