leravel10にて、ルーティングが反映leravelされず、listにも乗らない

困っていること

web.phpにてルーティングを実行しようとしていますが、ターミナルにてroute:listで確認をしてもルーティングが反映されません。

前提

viewを表示するだけのルーティングですがそもそも反映すらされません。
当方初心者です。。

### 該当のソースコード ```leravel,web.php ```<?php use App\Http\Controllers\SystemController; use App\Http\Controllers\ProfileController; use Illuminate\Support\Facades\Route; //トップページを表示 Route::get('/toppage', [SystemController::class, 'toppage'])->name('topPage'); Route::middleware('auth')->group(function () { Route::get('/profile', [ProfileController::class, 'edit'])->name('profile.edit'); Route::patch('/profile', [ProfileController::class, 'update'])->name('profile.update'); Route::delete('/profile', [ProfileController::class, 'destroy'])->name('profile.destroy'); });

試したこと

cacheのclearなど

補足情報(FW/ツールのバージョンなど)

lerabel10.24 xammpを使っています。

コメントを投稿

0 コメント