skip to Main Content

Redis – Logout bug in Laravel 7?

Currently have a classified site built using Laravel, Laravel Framework 7.20.0 This is my routes code Route::get('logout', 'AuthLoginController@logout'); this my logout method. public function logout(Request $request) { // Get the current Country if (session()->has('country_code')) { $countryCode = session('country_code'); } if…

VIEW QUESTION

Multi Domain with single login,

I have been planning to create a laravel+vuejs apps stretching across subdomains (presentation creator, forms creator, polls creator etc.,each in a subdomain) and will have 2 version of the same web app (indian version with different languages and content and…

VIEW QUESTION
Back To Top
Search