Merge pull request #1727 from prashant-webkul/bugs_patch_1

Fixed issue undefined variable  at checkout
This commit is contained in:
Jitendra Singh 2019-11-01 16:04:40 +05:30 committed by GitHub
commit 8ccb72f1d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,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()
]);
}