Minor fixes
This commit is contained in:
parent
540e382bd1
commit
d09025367f
2 changed files with 2 additions and 2 deletions
|
|
@ -312,7 +312,7 @@ class MolliePaymentDriver extends BaseDriver
|
|||
$client = $record->client;
|
||||
}
|
||||
else{
|
||||
$client = Client::withTrashed()->find($this->decodePrimaryKey($payment['metadata']->client_id));
|
||||
$client = Client::withTrashed()->find($this->decodePrimaryKey($payment->metadata->client_id));
|
||||
}
|
||||
|
||||
$message = [
|
||||
|
|
|
|||
|
|
@ -718,7 +718,7 @@ class SubscriptionService
|
|||
public function convertInvoiceToRecurring($client_id) :RecurringInvoice
|
||||
{
|
||||
|
||||
$client = Client::find($client_id);
|
||||
$client = Client::withTrashed()->find($client_id);
|
||||
|
||||
$subscription_repo = new SubscriptionRepository();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue