Route::get('/', function () { return view('welcome'); }); Route::get('/about', 'PageController@about'); Auth::routes(); Route::get('/home', 'HomeController@index')->name('home'); Route::get('products', ["uses"=>"ProductsController@index"]);
と上記に4種類のルート設定があります。これらの違いについて教えていただきたいのですが、
まず、4つ目のproductsという指定があります。上は、/から始まるのですが、これが入るのと入らないのでは、何が違うのでしょうか。
Route::get('/home', 'HomeController@index')->name('home');
とありますが、HomeController@index の@以降は、何を示しているのでしょうか。
Route::get('products', ["uses"=>"ProductsController@index"]);
これのusesは、何を指すのでしょうか。
ご回答お待ちしております。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。