You want to create a controller named HomeController and link it to a route for /home. Which sequence of commands and code is correct?
ARun <code>php artisan create:controller HomeController</code> and add <code>Route::post('/home', 'HomeController@index');</code>
BRun <code>php artisan make:controller HomeController</code> and add <code>Route::get('/home', 'HomeController@index');</code>
CCreate HomeController.php manually and add <code>Route::get('/home', 'HomeController@index');</code>
DRun <code>php artisan make:controller HomeController</code> and add <code>Route::get('/home', [HomeController::class, 'index']);</code> in routes/web.php