Wizard currency and tax edit issue solved.

This commit is contained in:
cuneytsenturk
2018-11-07 19:55:39 +03:00
parent 2d05fb84dc
commit c51edbce36
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,
]);
}
/**