How to generate a singleton resource controller in Laravel

php artisan make:controller ProfileController --singleton
Route::singleton('profile', ProfileController::class);