Fixed issue undefined variable at checkout

This commit is contained in:
Prashant Singh 2019-11-01 16:00:11 +05:30
parent 832c845091
commit be34e104a4
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ class OnepageController extends Controller
return response()->json([
'jump_to_section' => 'review',
'html' => view('shop::checkout.onepage.review', compact('cart', 'rule'))->render()
'html' => view('shop::checkout.onepage.review', compact('cart'))->render()
]);
}