Merge pull request #1104 from rahulshukla-webkul/development

removed undefined variable rule from checkout/save payment
This commit is contained in:
Jitendra Singh 2019-06-24 18:23:49 +05:30 committed by GitHub
commit 7ed43fabec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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