diff --git a/app/Ninja/Reports/TaxRateReport.php b/app/Ninja/Reports/TaxRateReport.php index 4cc9df12468c..588432b3596e 100644 --- a/app/Ninja/Reports/TaxRateReport.php +++ b/app/Ninja/Reports/TaxRateReport.php @@ -31,7 +31,9 @@ class TaxRateReport extends AbstractReport ->withArchived() ->with('contacts', 'user') ->with(['invoices' => function ($query) { - $query->with('invoice_items') + $query + ->with('account', 'client') + ->with('invoice_items') ->withArchived() ->invoices() ->where('is_public', '=', true);