pdf Updated, Invoice Updated, Report Updated

This commit is contained in:
Utkarsh Khedkar
2026-03-17 19:14:47 +05:30
parent 0257b68f16
commit 19d7f423b3
23 changed files with 2320 additions and 1750 deletions

View File

@@ -22,7 +22,8 @@ class AdminCustomerController extends Controller
$query = User::with([
'marks',
'orders',
'invoices.installments' // 🔥 IMPORTANT
'invoices.installments',
'invoices.chargeGroups', // 🔥 for order total calculation
])->orderBy('id', 'desc');
if (!empty($search)) {
@@ -159,4 +160,4 @@ class AdminCustomerController extends Controller
}
}
}