Cambios en home y navBar

This commit is contained in:
Bryam Cesar
2025-08-13 00:19:17 -03:00
parent 44e1da9693
commit e9cd6f3b4f
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ use App\Http\Controllers\HomeController;
use App\Http\Controllers\ProductosController;
use App\Models\Product;
Route::get('/',HomeController::class);
Route::get('/',HomeController::class)->name('home');
Route::get('/productos',[ProductosController::class,'index'])->name('productos.index');
Route::get('/productos/create',[ProductosController::class,'create'])->name('productos.create');