taller/routes/web.php
2026-04-13 18:06:45 -03:00

20 lines
637 B
PHP

<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\CategoriasController;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider and all of them will
| be assigned to the "web" middleware group. Make something great!
|
*/
Route::get('/', function () {
return view('welcome');
});
Route::get('categorias', [CategoriasController::class, 'index'])->name('categorias.index');