These are also called "Single Action Controllers", where you have only one method __invoke() inside, and you attach the Route to the Controller:
Route::post('/server', ProvisionServer::class);
Read more in the official Laravel docs.
Route::post('/server', ProvisionServer::class);
Read more in the official Laravel docs.