Hello everyone, i am very new in laravel, i created a app that use simple CRUD to add, delete and so on, everything was working just fine and i installed breeze and now nothing works. So i can register and log in, it takes me to dashboard but i want to be dirrected to the other page i created which was /module, also when i manually typed the path in the borwser it showed me that doesnt exist :(
So what i should change in my app after installing breeze in order to get everything connected?
Can you please give more details? about the "web.php" for example?
For the redirect, breeze uses a const called "HOME", you can find it in the "RouteServiceProvider", simply change the value, or go to "AuthenticatedSessionController" in "App/Http/Controllers/Auth" and change the last line of the "store" method which is responsible for redirecting.
@vasilver I can't see a "/module" module route, I think you're missing some methods maybe in the controller? can you share its code the "ModuleController".
Please make sure to wrap the code between php for the formatting as @sr57 stated.