I'm working with Laravel 8 and BackPack 5.6.
I setup "setup_dashboard_routes" as false, and now I get 404 after login. The thing is, I would like to redirect to a custom URL. Documentation says "you then need to overwrite the login route on your AuthController". But, I don't find which file should I edit/create. I tried on "/Http/Controllers/", "/Http/Controllers/Admin", "/Http/Controllers/Auth".
So, I need some guidance about what should I do to get BackPack redirecting to custom URL after login.
Thank you!
if you want to manage your own Auth Controller, so you need to create:
For login redirect you need to override:
If you use Backpack Auth then change "redirectTo" method.
Another easy ways is redirect "dashboard" route
Cheers.