Is it Possible to redirect the url "https://demo.foodomaa.com/public/admin/dashboard" to url "https://demo.foodomaa.com/public/auth/login" instead of show this message "403|User is not logged in." ? [Note: Only If the User is not Logged in]
Saurabh Sir Please look into this matter
Abiz009 simple replace this code on routes/adminroutes.php Route::group(['prefix' => 'admin'], function () { to this Route::group(['prefix' => 'admin', 'middleware' => 'auth'], function () {
Route::group(['prefix' => 'admin'], function () {
Route::group(['prefix' => 'admin', 'middleware' => 'auth'], function () {
I have noted it down. https://trello.com/c/GaQdycvt
Will see if this can be easily done.
Saurabh thanks for quick response sir🙏😘
BiswajitNandi Thank You🙏
BiswajitNandi Works like a charm for me!
BiswajitNandi Working perfectly
BiswajitNandi @Saurabh If possible please add in next update
NikhilJain Added. (added for store owner routes as well.)