From 9819106534f549ac8f1918b9efa53f789628eeba Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Wed, 5 Jul 2017 13:34:59 +0300 Subject: [PATCH] Fix for tax rates public id --- resources/views/partials/tax_rates.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/partials/tax_rates.blade.php b/resources/views/partials/tax_rates.blade.php index 293c5065b5..c59ce200b5 100644 --- a/resources/views/partials/tax_rates.blade.php +++ b/resources/views/partials/tax_rates.blade.php @@ -2,7 +2,7 @@ ->addOption('','') ->label(isset($taxRateLabel) ? $taxRateLabel : trans('texts.tax_rate')) ->onchange('taxSelectChange(event)') - ->fromQuery($taxRates) !!} + ->fromQuery($taxRates, null, 'public_id') !!}
{!! Former::input('tax_rate1') !!} @@ -14,7 +14,7 @@ ->addOption('','') ->label(isset($taxRateLabel) ? $taxRateLabel : trans('texts.tax_rate')) ->onchange('taxSelectChange(event)') - ->fromQuery($taxRates) !!} + ->fromQuery($taxRates, null, 'public_id') !!}
{!! Former::input('tax_rate2') !!}