Fixed issue #143

This commit is contained in:
mohdfaiz.dev 2019-02-01 16:24:39 +05:30
parent c3e0f7acad
commit cc4a88f271
1 changed files with 1 additions and 0 deletions

View File

@ -41,6 +41,7 @@ class SessionController extends Controller
if (auth()->guard('customer')->check()) {
return redirect()->route('customer.session.index');
} else {
session()->put('url.intended', url()->previous());
return view($this->_config['view']);
}
}