+1 vote
in Laravel by
What are the default route files in Laravel?

1 Answer

0 votes
by

Below are the four default route files in the routes folder in Laravel:

  1. web.php - For registering web routes.
  2. api.php - For registering API routes.
  3. console.php - For registering closure-based console commands.
  4. channel.php - For registering all your event broadcasting channels that your application supports.
...