explicit where for client in payment repo
This commit is contained in:
parent
63cc567244
commit
4f35c6f894
1 changed files with 1 additions and 1 deletions
|
|
@ -72,7 +72,7 @@ class PaymentRepository extends BaseRepository
|
|||
$this->processExchangeRates($data, $payment);
|
||||
|
||||
$is_existing_payment = false;
|
||||
$client = Client::find($data['client_id'])->withTrashed();
|
||||
$client = Client::where('id', $data['client_id'])->withTrashed()->first();
|
||||
|
||||
/*We only update the paid to date ONCE per payment*/
|
||||
if (array_key_exists('invoices', $data) && is_array($data['invoices']) && count($data['invoices']) > 0) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue