Let's say I have a controller called TeamsController. Controller has following method, that returns all teams user has access to.
public function findAll(Request $request): JsonResponse
{
  //...
}
Then I have bunch of other controllers with the same method. I would like to create a single route, that would work for all controllers, so I would not need to add a line for each controller every time I create a new controller.
I am unable to catch the controller name from URI. This is what I have tried.
$router->group(['middleware' => 'jwt.auth'], function () use ($router) {
    // This works
    //$router->get('teams', 'TeamsController@findAll');
    
    // This just returns TeamsController@findAll string as a response
    $router->get('{resource}', function ($resource) {
        return ucfirst($resource) . 'Controller@findAll';
    });
});
				
                        
You return a string instead of calling a controller action: I believe Laravel loads the controllers this way (not tested)
But again, I don't really think it's a good idea.