laravel6
php 7.4
web.php Route::group(['middleware' => ['auth']], function () { Route::get('/home', function() { return view('home');}); //追加 Route::get('/edit', 'Auth\AuthController@edit');
Authcontroller public function edit() { $hello = 'Guten Morgen'; return view('auth.edit', compact('hello')); }
views/auth/edit <!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title>HelloHello</title> </head> <body> <h1>{{ $hello }}</h1> </body> </html>
views/partials/header <li><a href="{{url('/edit')}}">テスト</a></li>
laravelでボタン押下後画面遷移できない。
設置したボタンを押下すると、指定のページに遷移するようにしたいがうまくいかない。
エラーははかず、同じhomeにとどまるのみ。
web.phpのルーティング設定がうまくいっていない?
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。