Новый контроллер Laravel

php artisan make:migration create_articles_table --create=articles
php artisan migrate
php artisan make:model Article
php artisan make:controller Controllers\Article\ListController --model=Article
Route::get('/articles', 'Controllers\Article\ListController')->name('article.list');