From 9c9970eafb1e96e46944d041919dfd42324d360a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Duli=C3=A7i?= Date: Thu, 23 Jul 2020 18:26:22 +0300 Subject: [PATCH] added missing tax types --- app/Http/Controllers/Modals/Taxes.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Http/Controllers/Modals/Taxes.php b/app/Http/Controllers/Modals/Taxes.php index 661d212cc..e407e88f6 100644 --- a/app/Http/Controllers/Modals/Taxes.php +++ b/app/Http/Controllers/Modals/Taxes.php @@ -28,8 +28,10 @@ class Taxes extends Controller public function create() { $types = [ + 'fixed' => trans('taxes.fixed'), 'normal' => trans('taxes.normal'), 'inclusive' => trans('taxes.inclusive'), + 'withholding' => trans('taxes.withholding'), 'compound' => trans('taxes.compound'), ];