All routes in EducaPerú are defined inDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/AlexQuintana147/EducaPeru/llms.txt
Use this file to discover all available pages before exploring further.
routes/web.php using simple closures that return Blade views directly. There are no dedicated controller classes and no API routes in the current version — each URL maps immediately to its corresponding view file.
routes/web.php
Route Reference
| Method | Path | View | Description |
|---|---|---|---|
| GET | / | welcome | Home page with hero and services overview |
| GET | /capacitaciones | capacitaciones | Course catalog with all available programs |
| GET | /capacitaciones/ofimatica | capacitaciones.ofimatica | Ofimática course detail page |
| GET | /nosotros | nosotros | About us: mission, vision, values |
| GET | /desarrollo-web | desarrollo-web | Web development service and contact form |
The
/login route is referenced in the navbar’s Ingresar CTA button but is not yet defined in routes/web.php. It may be introduced by Laravel Breeze, Laravel Fortify, or a future authentication implementation.Adding Routes
To add a new public page, register aGET route in routes/web.php using the same closure pattern and return the corresponding Blade view:
routes/web.php
resources/views/new-page.blade.php and the page will be accessible at /new-page. See the Views page for how to structure the new template.