2026-07-03 13:46:54 +00:00
|
|
|
<?php
|
|
|
|
|
|
2026-07-31 17:41:55 +03:00
|
|
|
use App\Http\Controllers\ProductController;
|
2026-07-03 13:46:54 +00:00
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
|
|
2026-07-31 17:41:55 +03:00
|
|
|
Route::get("/", function () {
|
|
|
|
|
return view("welcome");
|
2026-07-03 13:46:54 +00:00
|
|
|
});
|
2026-07-31 17:41:55 +03:00
|
|
|
|
|
|
|
|
Route::get("/products/{product}", [ProductController::class, "show"])->name(
|
|
|
|
|
"product.show",
|
|
|
|
|
);
|