setting up front 1

This commit is contained in:
elvira
2026-07-31 17:41:55 +03:00
parent b88fde739c
commit bf8b9219fc
48 changed files with 2250 additions and 11 deletions
+7 -2
View File
@@ -1,7 +1,12 @@
<?php
use App\Http\Controllers\ProductController;
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return view('welcome');
Route::get("/", function () {
return view("welcome");
});
Route::get("/products/{product}", [ProductController::class, "show"])->name(
"product.show",
);