Example command to create controller: `php artisan make:controller ArticleTagController --resource` Example route: `Route::resource('articles.tags', 'ArticleTagController');`
Example command to create controller:
php artisan make:controller ArticleTagController --resourceExample route:
Route::resource('articles.tags', 'ArticleTagController');