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

Get archived payment gateway

This commit is contained in:
David Bomba 2021-12-15 07:42:20 +11:00
parent 55f96e035b
commit d965485919

View File

@ -47,7 +47,7 @@ class PaymentWebhookRequest extends Request
*/
public function getCompanyGateway()
{
return CompanyGateway::findOrFail($this->decodePrimaryKey($this->company_gateway_id));
return CompanyGateway::withTrashed()->findOrFail($this->decodePrimaryKey($this->company_gateway_id));
}
/**