If you have ever need to forward or call another controller from a controller in Laravel, here are two methods
This will redirect the request to another controller’s method.
return redirect()->action('[email protected]');
You can also call another method directly without doing a redirect
return app->call('App\Http\Controllers\[email protected]');
Hope one of these methods help!