Login
Remember
Register
Ask a Question
What are the default route files in Laravel?
+1
vote
asked
Jul 10, 2021
in
Laravel
by
SakshiSharma
What are the default route files in Laravel?
default-route
laraval-route-file
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 10, 2021
by
SakshiSharma
Below are the four default route files in the routes folder in Laravel:
web.php - For registering web routes.
api.php - For registering API routes.
console.php - For registering closure-based console commands.
channel.php - For registering all your event broadcasting channels that your application supports.
...