//文法エラー
Route::get('hello', 'function(){
return view('hello.index');
});
⬇️
Route::get('hello', function(){
return view('hello.index');
});
functionの前にアポストロフィ(')があり、エラー。
→こちらの記事を参考にさせて頂きました。
Go to list of users who liked
More than 1 year has passed since last update.
//文法エラー
Route::get('hello', 'function(){
return view('hello.index');
});
⬇️
Route::get('hello', function(){
return view('hello.index');
});
functionの前にアポストロフィ(')があり、エラー。
→こちらの記事を参考にさせて頂きました。
Register as a new user and use Qiita more conveniently
Go to list of users who liked