diff --git a/app/Http/Controllers/QuoteController.php b/app/Http/Controllers/QuoteController.php index c02e54672daa..0e154c5e0ec6 100644 --- a/app/Http/Controllers/QuoteController.php +++ b/app/Http/Controllers/QuoteController.php @@ -98,7 +98,7 @@ class QuoteController extends BaseController return [ 'entityType' => ENTITY_QUOTE, 'account' => $account, - 'products' => Product::scope()->orderBy('id')->get(['product_key', 'notes', 'cost', 'qty']), + 'products' => Product::scope()->with('default_tax_rate')->orderBy('product_key')->get(), 'taxRateOptions' => $account->present()->taxRateOptions, 'defaultTax' => $account->default_tax_rate, 'countries' => Cache::get('countries'),