Skip to main content

Documentation 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.

All routes in EducaPerú are defined in 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
<?php

use Illuminate\Support\Facades\Route;

Route::get('/', function () {
    return view('welcome');
});

Route::get('/capacitaciones', function () {
    return view('capacitaciones');
});

Route::get('/nosotros', function () {
    return view('nosotros');
});

Route::get('/desarrollo-web', function () {
    return view('desarrollo-web');
});

Route::get('/capacitaciones/ofimatica', function () {
    return view('capacitaciones.ofimatica');
});

Route Reference

MethodPathViewDescription
GET/welcomeHome page with hero and services overview
GET/capacitacionescapacitacionesCourse catalog with all available programs
GET/capacitaciones/ofimaticacapacitaciones.ofimaticaOfimática course detail page
GET/nosotrosnosotrosAbout us: mission, vision, values
GET/desarrollo-webdesarrollo-webWeb 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 a GET route in routes/web.php using the same closure pattern and return the corresponding Blade view:
routes/web.php
Route::get('/new-page', function () {
    return view('new-page');
});
Create the matching view file at 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.

Build docs developers (and LLMs) love