From 015ae3727b60eb4681b17c4f577719b06835a26b Mon Sep 17 00:00:00 2001 From: "venkatesh.r" Date: Tue, 6 Jan 2026 12:59:49 +0530 Subject: [PATCH] FIX_UTR_ISSUE --- app/Models/InvoiceModel.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/Models/InvoiceModel.php b/app/Models/InvoiceModel.php index a2e241dc..a2284d5b 100644 --- a/app/Models/InvoiceModel.php +++ b/app/Models/InvoiceModel.php @@ -206,9 +206,8 @@ class InvoiceModel extends Model WHEN payout_status = 2 THEN 'Completed' END AS status_text, - partner_agent.name as agent_name ") - ->join('partner_agent', 'partner_invoice.agent_id = partner_agent.id') + // ->join('partner_agent', 'partner_invoice.agent_id = partner_agent.id') ->where('partner_invoice.is_active', 1) ->where('partner_invoice.id', $invoice_id) ->first();