close #611 Fixed: Create tax rate not null type.

This commit is contained in:
cuneytsenturk
2018-11-09 12:14:06 +03:00
parent 636afc4565
commit d30fe4da9b
5 changed files with 14 additions and 4 deletions

View File

@ -18,7 +18,13 @@ class Taxes extends Controller
{
$taxes = Tax::collect();
return view('settings.taxes.index', compact('taxes', 'rates'));
$types = [
'normal' => trans('taxes.normal'),
'inclusive' => trans('taxes.inclusive'),
'compound' => trans('taxes.compound'),
];
return view('settings.taxes.index', compact('taxes', 'types'));
}
/**