Commit ba8b13d1 authored by Alfonso Rafael Solis Rangel's avatar Alfonso Rafael Solis Rangel
Browse files

Agregar las rutas de dependencias

parent 94c4730c
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
<?php

use Illuminate\Support\Facades\Route;
//Middlewares
use App\Http\Middleware\CheckBanned;
//Controllers
use App\Http\Controllers\DependenciaController;

Route::get('/', function () {
    return view('welcome');
@@ -17,3 +20,5 @@
        return view('dashboard');
    })->name('dashboard');
});

Route::get('/catalogos/dependencias', [DependenciaController::class, 'index']);
 No newline at end of file