Merge branch '1.3-dev' of github.com:akaunting/akaunting into 1.3-dev

This commit is contained in:
denisdulici
2018-11-07 19:56:25 +03:00
5 changed files with 36 additions and 4 deletions

View File

@ -81,7 +81,14 @@ class Taxes extends Controller
$item = $tax;
return view('wizard.taxes.edit', compact('item'));
$html = view('wizard.TAXES.edit', compact('item'))->render();
return response()->json([
'success' => true,
'error' => false,
'message' => 'null',
'html' => $html,
]);
}
/**